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..9220b201d439deab20cccaf1a148f6baa1c86e7e |
--- /dev/null |
+++ b/LayoutTests/media/track/track-css-cue-pseudo-class.html |
@@ -0,0 +1,13 @@ |
+<!DOCTYPE html> |
+<title>:cue pseudo-class is not supported and dropped during parsing</title> |
rune
2014/10/29 10:32:46
Drop <title> and add as a description parameter to
philipj_slow
2014/10/29 10:36:06
With testharness.js, the test title is the <title>
|
+<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); |
+}); |
+</script> |