Index: LayoutTests/fast/regions/region-styling/parse-incomplete-region-rule.html |
diff --git a/LayoutTests/fast/regions/region-styling/parse-incomplete-region-rule.html b/LayoutTests/fast/regions/region-styling/parse-incomplete-region-rule.html |
deleted file mode 100644 |
index 42e6eb818e9633f00ebcd4baae4a6dc20632b182..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/regions/region-styling/parse-incomplete-region-rule.html |
+++ /dev/null |
@@ -1,21 +0,0 @@ |
-<!doctype html> |
-<html> |
- <head> |
- <style> |
- #region1 { } |
- @-webkit-region #region1 |
- @-webkit-region #region1 { } |
- </style> |
- </head> |
- <body> |
- <script> |
- if (window.testRunner) |
- testRunner.dumpAsText(); |
- var rulesText = ""; |
- var cssRules = document.styleSheets[0].cssRules; |
- for (var idx = 0; idx < cssRules.length; idx++) |
- rulesText += cssRules.item(idx).parentStyleSheet; |
- </script> |
- PASS if it does not crash or cause an ASSERT failure. |
- </body> |
-</html> |