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

Side by Side Diff: third_party/WebKit/LayoutTests/svg/dom/set-title-html-namespace-on-SVG.html

Issue 1774913003: (Re-commit) Fix SVGDocument return title that is not a child of the root element (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <script src="../../resources/testharness.js"></script>
3 <script src="../../resources/testharnessreport.js"></script>
4 <script>
5 test(function() {
6 // svg != SVG
7 var doc = document.implementation.createDocument("http://www.w3.org/2000/svg", "SVG", null);
8 doc.documentElement.appendChild(doc.createElementNS("http://www.w3.org/1999/xh tml", "title"));
9 doc.documentElement.lastChild.textContent = "bar";
10 assert_equals(doc.title, "bar");
11
12 doc.documentElement.appendChild(doc.createElementNS("http://www.w3.org/1999/xh tml", "title"));
13 doc.documentElement.lastChild.textContent = "foo";
14 assert_equals(doc.title, "bar");
15 }, "Test for setting title element in the html namespace on SVG element that is root.");
16 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698