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

Side by Side Diff: LayoutTests/fast/dom/docfragment-multiple-document-elements.html

Issue 779173002: Be more strict about multiple documentElements (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Do the c -> child rename Created 6 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 <script src="../../resources/js-test.js"></script>
3
4 <script>
5 onload = function()
6 {
7 var f = document.createDocumentFragment();
8 f.appendChild(document.createElement("div"));
9 f.appendChild(document.createElement("div"));
10 document.documentElement.remove();
11 document.appendChild(f);
12 };
13 </script>
14
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698