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

Side by Side Diff: LayoutTests/http/tests/dom/create-contextual-fragment-from-bodyless-svg-document-range.html

Issue 115693010: Fix Range.createContextualFragment for non-Element contexts. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased Created 6 years, 6 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 <p>Test of createContextualFragment from a Range whose container is an SVG docum ent with no &lt;svg&gt; element. If the test succeeds you will see the word "PAS S" below.</p>
3 <p id="result"></p>
4 <script>
5 if (window.testRunner) {
6 testRunner.dumpAsText();
7 testRunner.waitUntilDone();
8 }
9
10 function onSvgLoad()
11 {
12 window.svgDocument = document.getElementById('container').getSVGDocument();
13 window.range = svgDocument.createRange();
14 window.fragment = range.createContextualFragment('<text id="fragment" x="0" y="16" fontsize="16">Inserted fragment</text>');
15 window.svg = svgDocument.createElementNS('http://www.w3.org/2000/svg', 'svg' );
16 svg.setAttribute('width', '300px');
17 svg.setAttribute('height', '50px');
18 svg.setAttribute('viewBox', '0 0 300 24');
19 svgDocument.appendChild(svg);
20 svg.appendChild(fragment);
21 window.text = svgDocument.getElementById('fragment');
22
23 window.result = document.getElementById('result');
24 result.textContent = (text && text.parentElement === svg && text.namespaceUR I === 'http://www.w3.org/2000/svg') ? 'PASS' : 'FAIL';
25
26 if (window.testRunner)
27 testRunner.notifyDone();
28 }
29 </script>
30 <embed id="container" src="resources/empty-svg-file.svg" onload="onSvgLoad();" / >
31 </embed>
32
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698