Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <html> | |
|
esprehn
2014/09/19 05:06:52
missing doctype, also leave out the html, body and
MuVen
2014/09/19 16:19:29
Done.
| |
| 2 <head> | |
| 3 <style> | |
| 4 ::-webkit-scrollbar { | |
| 5 height: 16px; | |
|
esprehn
2014/09/19 05:06:52
Does height actually do anything here?
MuVen
2014/09/19 16:19:29
Nothing like that, i see issue with height and wid
| |
| 6 overflow: visible; | |
|
esprehn
2014/09/19 05:06:52
overflow doesn't do anything on a scrollbar.
MuVen
2014/09/19 16:19:29
Done.
| |
| 7 width: 16px | |
| 8 } | |
| 9 html { | |
| 10 overflow-y: scroll | |
| 11 } | |
| 12 </style> | |
| 13 <script> | |
| 14 function test() { | |
| 15 // The factors are the same as those in Chrome settings. | |
|
esprehn
2014/09/19 05:06:52
just inline this code below, remove the function.
MuVen
2014/09/19 16:19:30
Done.
| |
| 16 var zoomFactors = [1, 1.1, 1.25, 1.5, 1.75, 2, 2.5, 3, 4, 5]; | |
| 17 if (!window.eventSender) | |
| 18 return; | |
| 19 for (i = 0; i < zoomFactors.length; ++i) | |
| 20 eventSender.setPageZoomFactor(zoomFactors[i]); | |
| 21 | |
| 22 if (window.testRunner) | |
|
esprehn
2014/09/19 05:06:52
bad indent.
MuVen
2014/09/19 16:19:30
Done.
| |
| 23 testRunner.notifyDone(); | |
| 24 } | |
| 25 | |
| 26 if (window.testRunner) { | |
|
esprehn
2014/09/19 05:06:52
bad indentation.
MuVen
2014/09/19 16:19:30
Done.
| |
| 27 testRunner.dumpAsText(); | |
| 28 testRunner.waitUntilDone(); | |
| 29 } | |
| 30 test(); | |
| 31 </script> | |
| 32 </head> | |
| 33 <body> | |
| 34 <div> | |
| 35 Test for Reproducible crash in FrameView::layout(bool allowSubtree). | |
| 36 </div> | |
| 37 <div> | |
| 38 The test passed if it did not crash. | |
| 39 </div> | |
| 40 <ul> | |
| 41 <li>Chrome did not crash</li> | |
| 42 <li>Chrome did not crash</li> | |
| 43 <li>Chrome did not crash</li> | |
| 44 <li>Chrome did not crash</li> | |
| 45 <li>Chrome did not crash</li> | |
| 46 <li>Chrome did not crash</li> | |
| 47 <li>Chrome did not crash</li> | |
| 48 <li>Chrome did not crash</li> | |
| 49 <li>Chrome did not crash</li> | |
| 50 <li>Chrome did not crash</li> | |
| 51 </ul> | |
| 52 </body> | |
| 53 </html> | |
| OLD | NEW |