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

Unified Diff: LayoutTests/css3/filters/custom-with-at-rule-syntax/parsing-at-rule-valid-expected.txt

Issue 25607005: Fix WHITESPACE issues in the CSS grammar. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 2 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
« no previous file with comments | « no previous file | LayoutTests/css3/filters/custom-with-at-rule-syntax/script-tests/parsing-at-rule-valid.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/css3/filters/custom-with-at-rule-syntax/parsing-at-rule-valid-expected.txt
diff --git a/LayoutTests/css3/filters/custom-with-at-rule-syntax/parsing-at-rule-valid-expected.txt b/LayoutTests/css3/filters/custom-with-at-rule-syntax/parsing-at-rule-valid-expected.txt
index 338fb6ad49b3a9605e3f3cbaf57ed8597d621701..4cd9442ff8e8e42df3d910a16c47a0242b3bff30 100644
--- a/LayoutTests/css3/filters/custom-with-at-rule-syntax/parsing-at-rule-valid-expected.txt
+++ b/LayoutTests/css3/filters/custom-with-at-rule-syntax/parsing-at-rule-valid-expected.txt
@@ -55,6 +55,42 @@ PASS cssRule.constructor === WebKitCSSFilterRule is true
PASS cssRule.__proto__ === WebKitCSSFilterRule.prototype is true
PASS declaration.length is 0
+Empty rule, comment separators
+@-webkit-filter/**/my-filter/**/{ }
+PASS cssRule.cssText is "@-webkit-filter my-filter { }"
+PASS cssRule.type is CSSRule.WEBKIT_FILTER_RULE
+PASS cssRule instanceof WebKitCSSFilterRule is true
+PASS cssRule.constructor === WebKitCSSFilterRule is true
+PASS cssRule.__proto__ === WebKitCSSFilterRule.prototype is true
+PASS declaration.length is 0
+
+Empty rule, comment+space separators
+@-webkit-filter/**/ my-filter/**/ { }
+PASS cssRule.cssText is "@-webkit-filter my-filter { }"
+PASS cssRule.type is CSSRule.WEBKIT_FILTER_RULE
+PASS cssRule instanceof WebKitCSSFilterRule is true
+PASS cssRule.constructor === WebKitCSSFilterRule is true
+PASS cssRule.__proto__ === WebKitCSSFilterRule.prototype is true
+PASS declaration.length is 0
+
+Empty rule, space+comment separators
+@-webkit-filter /**/my-filter /**/{ }
+PASS cssRule.cssText is "@-webkit-filter my-filter { }"
+PASS cssRule.type is CSSRule.WEBKIT_FILTER_RULE
+PASS cssRule instanceof WebKitCSSFilterRule is true
+PASS cssRule.constructor === WebKitCSSFilterRule is true
+PASS cssRule.__proto__ === WebKitCSSFilterRule.prototype is true
+PASS declaration.length is 0
+
+Empty rule, space+comment+space separators
+@-webkit-filter /**/ my-filter /**/ { }
+PASS cssRule.cssText is "@-webkit-filter my-filter { }"
+PASS cssRule.type is CSSRule.WEBKIT_FILTER_RULE
+PASS cssRule instanceof WebKitCSSFilterRule is true
+PASS cssRule.constructor === WebKitCSSFilterRule is true
+PASS cssRule.__proto__ === WebKitCSSFilterRule.prototype is true
+PASS declaration.length is 0
+
========================================
Nested filter at-rule tests.
========================================
« no previous file with comments | « no previous file | LayoutTests/css3/filters/custom-with-at-rule-syntax/script-tests/parsing-at-rule-valid.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698