Index: LayoutTests/fast/dom/Text/replace-with.html |
diff --git a/LayoutTests/fast/dom/Text/replace-with.html b/LayoutTests/fast/dom/Text/replace-with.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..913248f8a0e35a6b42156dba5549d98d7561bd64 |
--- /dev/null |
+++ b/LayoutTests/fast/dom/Text/replace-with.html |
@@ -0,0 +1,13 @@ |
+<!DOCTYPE html> |
+<script src="../../../resources/testharness.js"></script> |
+<script src="../../../resources/testharnessreport.js"></script> |
+<script src="../script-tests/childnode-replace-with.js"></script> |
+<script> |
+var node, parentNode; |
+setup(function() { |
+node = document.createTextNode("text"); |
+parentNode = document.createElement("div"); |
+}); |
+testReplaceWith(node, parentNode, "text"); |
+</script> |
+</html> |