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

Unified Diff: LayoutTests/fast/dynamic/insertAdjacentHTML-svg.html

Issue 147993006: Move insertAdjacentElement/insertAdjacentText to Element. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: olc chunk mismatch Created 6 years, 10 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/dynamic/insertAdjacentHTML-svg.html
diff --git a/LayoutTests/fast/dynamic/insertAdjacentHTML-svg.html b/LayoutTests/fast/dynamic/insertAdjacentHTML-svg.html
deleted file mode 100644
index 1b6380a850cedac8bb8a37797ddf06ae37b87d6c..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/dynamic/insertAdjacentHTML-svg.html
+++ /dev/null
@@ -1,17 +0,0 @@
-<!doctype html>
-<html>
-<body>
- <svg style="width:200px; height: 200px">
- <g id="container" style="fill: green"></g>
- </svg>
-</body>
-<script>
- if (window.testRunner)
- testRunner.dumpAsText();
-
- document.getElementById("container").insertAdjacentHTML("beforeBegin", "<text y=10>1 (black)</text>");
- document.getElementById("container").insertAdjacentHTML("afterBegin", "<text y=30>2 (green)</text>");
- document.getElementById("container").insertAdjacentHTML("beforeEnd", "<text y=50>3 (green)</text>");
- document.getElementById("container").insertAdjacentHTML("afterEnd", "<text y=70>4 (black)</text>");
-</script>
-</html>

Powered by Google App Engine
This is Rietveld 408576698