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

Unified Diff: third_party/WebKit/LayoutTests/animations/keyframe-autoclose-brace.html

Issue 2795223002: Remove WEBKIT_KEYFRAMES_RULE and WEBKIT_KEYFRAME_RULE (Closed)
Patch Set: changes in ui/filemanager/ Created 3 years, 8 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: third_party/WebKit/LayoutTests/animations/keyframe-autoclose-brace.html
diff --git a/third_party/WebKit/LayoutTests/animations/keyframe-autoclose-brace.html b/third_party/WebKit/LayoutTests/animations/keyframe-autoclose-brace.html
index 1c70bcf345ad121c58602f76e3b06efd1cd087c0..6f320d37e9a38f018265f8caf3eb219f86dfca05 100644
--- a/third_party/WebKit/LayoutTests/animations/keyframe-autoclose-brace.html
+++ b/third_party/WebKit/LayoutTests/animations/keyframe-autoclose-brace.html
@@ -6,7 +6,7 @@
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Tests CSS parser autocloses braces.</title>
<style type="text/css" media="screen">
- @-webkit-keyframes foo {
+ @keyframes foo {
from { left: 100px; }
40% { left: 200px; }
60% { left: 200px; }
@@ -18,7 +18,7 @@
var ss = document.styleSheets;
for (var i = 0; i < ss.length; ++i) {
for (var j = 0; j < ss[i].cssRules.length; ++j) {
- if (ss[i].cssRules[j].type == window.CSSRule.WEBKIT_KEYFRAMES_RULE && ss[i].cssRules[j].name == rule)
+ if (ss[i].cssRules[j].type == window.CSSRule.KEYFRAMES_RULE && ss[i].cssRules[j].name == rule)
return ss[i].cssRules[j];
}
}
@@ -41,7 +41,7 @@
</script>
</head>
<body onload="test()">
-<div>Tests parsing the @-webkit-keyframes rule without closing brace. &quot;User agents must close all open constructs ... at the end of the style sheet.&quot;
+<div>Tests parsing the @keyframes rule without closing brace. &quot;User agents must close all open constructs ... at the end of the style sheet.&quot;
(<a href="http://www.w3.org/TR/CSS21/syndata.html#parsing-errors">http://www.w3.org/TR/CSS21/syndata.html#parsing-errors</a>). So it must be parsed as if
all braces are closed.</div>
<div id="console"></div>

Powered by Google App Engine
This is Rietveld 408576698