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

Unified Diff: LayoutTests/fast/dom/DocumentFragment/append.html

Issue 1085843002: Implement DOM: prepend, append, before, after & replaceWith (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/dom/DocumentFragment/append.html
diff --git a/LayoutTests/fast/dom/DocumentFragment/append.html b/LayoutTests/fast/dom/DocumentFragment/append.html
new file mode 100644
index 0000000000000000000000000000000000000000..ee3427125929aaff1f75adf37e4a68ea8c9cf0ab
--- /dev/null
+++ b/LayoutTests/fast/dom/DocumentFragment/append.html
@@ -0,0 +1,13 @@
+<!DOCTYPE html>
+<script src="../../../resources/testharness.js"></script>
+<script src="../../../resources/testharnessreport.js"></script>
+<script src="../script-tests/parentnode-append.js"></script>
+<script>
+var node, parentNode;
+setup(function() {
+node = document.createElement("div");
+parentNode = document.createDocumentFragment();
+});
+testAppend(node, parentNode, "document-fragment");
+</script>
+</html>

Powered by Google App Engine
This is Rietveld 408576698