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

Unified Diff: LayoutTests/fast/css/webkit-keyframes-crash.html

Issue 23682005: Make CSSRuleList.item() index argument mandatory (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase on master Created 7 years, 3 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/fast/dom/non-numeric-values-numeric-parameters-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/css/webkit-keyframes-crash.html
diff --git a/LayoutTests/fast/css/webkit-keyframes-crash.html b/LayoutTests/fast/css/webkit-keyframes-crash.html
index e9a13d38e898cd2dba054c5e3fa9fbef638f0bdb..2f40a686e613b74c887e92f7229b97b6a904fdd6 100644
--- a/LayoutTests/fast/css/webkit-keyframes-crash.html
+++ b/LayoutTests/fast/css/webkit-keyframes-crash.html
@@ -9,7 +9,7 @@
function main(){
var e = window.document.styleSheets[0].cssRules[0];
- e.cssRules.item().parentStyleSheet.removeRule();
+ e.cssRules.item(0).parentStyleSheet.removeRule();
e.name = 'bar';
document.getElementById('console').innerHTML = "PASSED";
}
« no previous file with comments | « no previous file | LayoutTests/fast/dom/non-numeric-values-numeric-parameters-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698