Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / text / text-shadow-extreme-value.html
blob5af3ac64db1ee5bd42a6a3e61d289ac6aa83084a
1 <html>
2 <head>
3 <title>Test HTML Page</title>
4 <script src="../../resources/run-after-layout-and-paint.js"></script>
5 <script>
6 function test()
8 if (window.testRunner) {
9 testRunner.dumpAsText();
10 testRunner.waitUntilDone();
11 runAfterLayoutAndPaint(function() {
12 testRunner.notifyDone();
13 });
16 </script>
17 <style type="text/css">
18 p { text-shadow: purple 0px 0px 38005685px; }
19 </style>
20 </head>
21 <body onload="test()">
22 <p>Extreme text-shadow blur values should not crash.</p>
23 </body>
24 </html>