Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(686)

Side by Side Diff: LayoutTests/fast/table/empty-section-crash.html

Issue 183703003: Remove more testRunner.display() calls from LayoutTests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Ditch fast/text/font-initial changes too Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <html>
2 <head>
3 <title></title>
4 <script type="text/javascript">
5 function finish()
6 {
7 /* Since the crash happens in painting code, force painting. This
8 makes the test work even when run without the --pixel option. */
9 testRunner.display();
10 testRunner.notifyDone();
11 }
12
13 function test()
14 {
15 if (window.testRunner) {
16 testRunner.waitUntilDone();
17 setTimeout(finish, 0);
18 testRunner.dumpAsText();
19 }
20 }
21 </script>
22 </head>
23 <body onload="test();">
24 <p>
25 Test for <i><a href="https://bugs.webkit.org/show_bug.cgi?id=9009">http: //bugzilla.opendarwin.org/show_bug.cgi?id=9009</a>
26 REGRESSION: ToT crash in WebCore at Zap2it</i>.
27 </p>
28 <p>
29 No crash means PASS.
30 </p>
31 <table style="position: absolute; top: -6px; border-collapse: collapse; bord er-top: 10px solid; width: 100px; height: 100px;">
32 <tbody></tbody>
33 <tbody><tr><td></td></tr></tbody>
34 </table>
35 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698