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

Unified Diff: LayoutTests/fast/block/basic/empty-anonymous-block-remove-crash.html

Issue 375293002: Node.insertBefore and Node.appendChild do not use custom binding anymore (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Replace assert with condition Created 6 years, 5 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/css/invalidation/style-update-with-added-stylesheet.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/block/basic/empty-anonymous-block-remove-crash.html
diff --git a/LayoutTests/fast/block/basic/empty-anonymous-block-remove-crash.html b/LayoutTests/fast/block/basic/empty-anonymous-block-remove-crash.html
index 192ae3df3aa3c789d1ee8a6f087776a4dd95b6e7..75974e6a1495354685a8e9f7f89d1134abdba533 100644
--- a/LayoutTests/fast/block/basic/empty-anonymous-block-remove-crash.html
+++ b/LayoutTests/fast/block/basic/empty-anonymous-block-remove-crash.html
@@ -10,7 +10,7 @@
function runTest()
{
var button = document.getElementById("test");
- button.insertBefore(document.createElement("tbody"));
+ button.insertBefore(document.createElement("tbody"), null);
document.body.offsetTop;
document.body.removeChild(button);
« no previous file with comments | « no previous file | LayoutTests/fast/css/invalidation/style-update-with-added-stylesheet.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698