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

Side by Side Diff: LayoutTests/fast/dynamic/insertAdjacentHTML-svg.html

Issue 105693009: Move insertAdjacentHTML to Element (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Correct base. Should not include patches it depends on. Created 7 years 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!doctype html>
2 <html>
3 <body>
4 <svg style="width:200px; height: 200px">
5 <g id="container" style="fill: green"></g>
6 </svg>
7 </body>
8 <script>
9 if (window.testRunner)
10 testRunner.dumpAsText();
11
12 document.getElementById("container").insertAdjacentHTML("beforeBegin", "<text y=10>1 (black)</text>");
13 document.getElementById("container").insertAdjacentHTML("afterBegin", "<text y =30>2 (green)</text>");
14 document.getElementById("container").insertAdjacentHTML("beforeEnd", "<text y= 50>3 (green)</text>");
15 document.getElementById("container").insertAdjacentHTML("afterEnd", "<text y=7 0>4 (black)</text>");
16 </script>
17 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/dynamic/insertAdjacentHTML-expected.txt ('k') | LayoutTests/fast/dynamic/insertAdjacentHTML-svg-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698