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

Side by Side Diff: LayoutTests/fast/text/text-shadow-extreme-value.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
1 <html> 1 <html>
2 <head> 2 <head>
3 <title>Test HTML Page</title> 3 <title>Test HTML Page</title>
4 <script src="../../resources/run-after-display.js"></script>
4 <script> 5 <script>
5 function test() 6 function test()
6 { 7 {
7 if (window.testRunner) { 8 if (window.testRunner) {
8 testRunner.dumpAsText(); 9 testRunner.dumpAsText();
9 document.body.offsetTop; 10 testRunner.waitUntilDone();
10 testRunner.display(); 11 runAfterDisplay(function() {
12 testRunner.notifyDone();
13 });
11 } 14 }
12 } 15 }
13 </script> 16 </script>
14 <style type="text/css"> 17 <style type="text/css">
15 p { text-shadow: purple 0px 0px 38005685px; } 18 p { text-shadow: purple 0px 0px 38005685px; }
16 </style> 19 </style>
17 </head> 20 </head>
18 <body onload="test()"> 21 <body onload="test()">
19 <p>Extreme text-shadow blur values should not crash.</p> 22 <p>Extreme text-shadow blur values should not crash.</p>
20 </body> 23 </body>
21 </html> 24 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/text/chromium-mac-duplicate-ime-composition.html ('k') | LayoutTests/http/tests/inspector/inspector-test.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698