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

Side by Side Diff: LayoutTests/fast/regions/region-styling/parse-incomplete-region-rule.html

Issue 159933010: Remove everything region-specific from LayoutTests. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 10 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
OLDNEW
(Empty)
1 <!doctype html>
2 <html>
3 <head>
4 <style>
5 #region1 { }
6 @-webkit-region #region1
7 @-webkit-region #region1 { }
8 </style>
9 </head>
10 <body>
11 <script>
12 if (window.testRunner)
13 testRunner.dumpAsText();
14 var rulesText = "";
15 var cssRules = document.styleSheets[0].cssRules;
16 for (var idx = 0; idx < cssRules.length; idx++)
17 rulesText += cssRules.item(idx).parentStyleSheet;
18 </script>
19 PASS if it does not crash or cause an ASSERT failure.
20 </body>
21 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698