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

Unified Diff: LayoutTests/fast/css/counters/asterisk-counter-update-after-layout-crash.html

Issue 23530010: Make CSSStyleSheet.insertRule() / deleteRule() arguments 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
Index: LayoutTests/fast/css/counters/asterisk-counter-update-after-layout-crash.html
diff --git a/LayoutTests/fast/css/counters/asterisk-counter-update-after-layout-crash.html b/LayoutTests/fast/css/counters/asterisk-counter-update-after-layout-crash.html
index c089cec476aa5f7f125b0c428cb6ff0ebe80b5ff..e3379584d4475b1916bfa112ff6eeb43f06e6f2b 100644
--- a/LayoutTests/fast/css/counters/asterisk-counter-update-after-layout-crash.html
+++ b/LayoutTests/fast/css/counters/asterisk-counter-update-after-layout-crash.html
@@ -3,7 +3,7 @@
</style>
<script>
function runTest() {
- document.styleSheets[0].insertRule("div { counter-reset: c 141170 }");
+ document.styleSheets[0].insertRule("div { counter-reset: c 141170 }", 0);
if (window.testRunner)
testRunner.dumpAsText();
}

Powered by Google App Engine
This is Rietveld 408576698