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

Unified Diff: LayoutTests/fast/dom/Comment/after.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
« no previous file with comments | « no previous file | LayoutTests/fast/dom/Comment/before.html » ('j') | Source/core/dom/ChildNode.idl » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/dom/Comment/after.html
diff --git a/LayoutTests/fast/dom/Comment/after.html b/LayoutTests/fast/dom/Comment/after.html
new file mode 100644
index 0000000000000000000000000000000000000000..489874a8c4f0b92c00301da4e638ff24d2a88c8c
--- /dev/null
+++ b/LayoutTests/fast/dom/Comment/after.html
@@ -0,0 +1,13 @@
+<!DOCTYPE html>
+<script src="../../../resources/testharness.js"></script>
+<script src="../../../resources/testharnessreport.js"></script>
+<script src="../script-tests/childnode-after.js"></script>
philipj_slow 2015/04/29 13:16:57 This pattern is a bit atypical for testharness.js
Paritosh Kumar 2015/06/08 12:21:24 Done. Thanks.
+<script>
+var node, parentNode;
+setup(function() {
+node = document.createComment("node");
philipj_slow 2015/04/29 13:16:57 Indentation should be 2 or 4 spaces. (I tend to us
Paritosh Kumar 2015/06/08 12:21:24 Done.
+parentNode = document.createElement("div");
+});
+testAfter(node, parentNode, "comment");
+</script>
+</html>
« no previous file with comments | « no previous file | LayoutTests/fast/dom/Comment/before.html » ('j') | Source/core/dom/ChildNode.idl » ('J')

Powered by Google App Engine
This is Rietveld 408576698