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

Side by Side Diff: LayoutTests/fast/dom/Range/create-contextual-fragment-from-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 context is a document. If the test succeeds you will see the word "PASS" below.</p>
3 <p id="result"></p>
4 <script>
5 if (window.testRunner)
6 testRunner.dumpAsText();
7
8 var range = document.createRange();
9 var fragment = range.createContextualFragment('<p id="fragment">Inserted fragmen t</p>');
10 document.body.appendChild(fragment);
11 var p = document.getElementById('fragment');
12
13 var result = document.getElementById('result');
14 result.textContent = (p && p.parentElement === document.body && p.namespaceURI = == 'http://www.w3.org/1999/xhtml') ? 'PASS' : 'FAIL';
15 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698