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

Unified Diff: LayoutTests/media/track/track-css-cue-pseudo-class.html

Issue 677943002: Clarify that there is no :cue or :cue(...) pseudo-class (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: banish <title> Created 6 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 | Source/core/css/CSSSelector.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/media/track/track-css-cue-pseudo-class.html
diff --git a/LayoutTests/media/track/track-css-cue-pseudo-class.html b/LayoutTests/media/track/track-css-cue-pseudo-class.html
new file mode 100644
index 0000000000000000000000000000000000000000..bea7ab131581360aeea15195ae50cd34b08a6427
--- /dev/null
+++ b/LayoutTests/media/track/track-css-cue-pseudo-class.html
@@ -0,0 +1,12 @@
+<!DOCTYPE html>
+<script src="../../resources/testharness.js"></script>
+<script src="../../resources/testharnessreport.js"></script>
+<style>
+:cue { color: red; }
+:cue(i) { color: red; }
+</style>
+<script>
+test(function() {
+ assert_equals(document.styleSheets[0].rules.length, 0);
+}, ":cue pseudo-class is not supported and dropped during parsing");
+</script>
« no previous file with comments | « no previous file | Source/core/css/CSSSelector.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698