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

Unified Diff: LayoutTests/fast/regions/region-styling/webkit-region-syntax-space.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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/regions/region-styling/webkit-region-syntax-space.html
diff --git a/LayoutTests/fast/regions/region-styling/webkit-region-syntax-space.html b/LayoutTests/fast/regions/region-styling/webkit-region-syntax-space.html
deleted file mode 100644
index 473c385d788c99b07e13ff337e9dc5bb04b3955f..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/regions/region-styling/webkit-region-syntax-space.html
+++ /dev/null
@@ -1,32 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
- <title>Spaces in @-webkit-region prelude</title>
- <script src="../../../resources/testharness.js"></script>
- <script src="../../../resources/testharnessreport.js"></script>
- <style>@-webkit-region/**/#flow { #id {} }</style>
- <style>@-webkit-region/**/ #flow { #id {} }</style>
- <style>@-webkit-region /**/#flow { #id {} }</style>
- <style>@-webkit-region /**/ #flow { #id {} }</style>
-</head>
-<body>
- <div id="log"></div>
- <script>
- test(function(){
- assert_equals(document.styleSheets[0].cssRules.length, 1, "Rule valid and in CSSOM.");
- }, "Comment between @-symbol and flow name");
-
- test(function(){
- assert_equals(document.styleSheets[1].cssRules.length, 1, "Rule valid and in CSSOM.");
- }, "Comment + space between @-symbol and flow name");
-
- test(function(){
- assert_equals(document.styleSheets[2].cssRules.length, 1, "Rule valid and in CSSOM.");
- }, "Space + comment between @-symbol and flow name");
-
- test(function(){
- assert_equals(document.styleSheets[3].cssRules.length, 1, "Rule valid and in CSSOM.");
- }, "Space + comment + space between @-symbol and flow name");
- </script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698