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

Unified Diff: third_party/WebKit/LayoutTests/imported/web-platform-tests/dom/nodes/Node-nodeValue.html

Issue 1984023002: Move web-platform-tests to wpt (part 1 of 2) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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: third_party/WebKit/LayoutTests/imported/web-platform-tests/dom/nodes/Node-nodeValue.html
diff --git a/third_party/WebKit/LayoutTests/imported/web-platform-tests/dom/nodes/Node-nodeValue.html b/third_party/WebKit/LayoutTests/imported/web-platform-tests/dom/nodes/Node-nodeValue.html
deleted file mode 100644
index ca12c8f6dc1c140dcffded4af6c8bc6c48f1b85e..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/imported/web-platform-tests/dom/nodes/Node-nodeValue.html
+++ /dev/null
@@ -1,71 +0,0 @@
-<!doctype html>
-<meta charset=utf-8>
-<title>Node.nodeValue</title>
-<link rel=help href="https://dom.spec.whatwg.org/#dom-node-nodevalue">
-<script src=../../../../resources/testharness.js></script>
-<script src=../../../../resources/testharnessreport.js></script>
-<div id=log></div>
-<script>
-test(function() {
- var the_text = document.createTextNode("A span!");
- assert_equals(the_text.nodeValue, "A span!");
- assert_equals(the_text.data, "A span!");
- the_text.nodeValue = "test again";
- assert_equals(the_text.nodeValue, "test again");
- assert_equals(the_text.data, "test again");
- the_text.nodeValue = null;
- assert_equals(the_text.nodeValue, "");
- assert_equals(the_text.data, "");
-}, "Text.nodeValue");
-
-test(function() {
- var the_comment = document.createComment("A comment!");
- assert_equals(the_comment.nodeValue, "A comment!");
- assert_equals(the_comment.data, "A comment!");
- the_comment.nodeValue = "test again";
- assert_equals(the_comment.nodeValue, "test again");
- assert_equals(the_comment.data, "test again");
- the_comment.nodeValue = null;
- assert_equals(the_comment.nodeValue, "");
- assert_equals(the_comment.data, "");
-}, "Comment.nodeValue");
-
-test(function() {
- var the_pi = document.createProcessingInstruction("pi", "A PI!");
- assert_equals(the_pi.nodeValue, "A PI!");
- assert_equals(the_pi.data, "A PI!");
- the_pi.nodeValue = "test again";
- assert_equals(the_pi.nodeValue, "test again");
- assert_equals(the_pi.data, "test again");
- the_pi.nodeValue = null;
- assert_equals(the_pi.nodeValue, "");
- assert_equals(the_pi.data, "");
-}, "ProcessingInstruction.nodeValue");
-
-test(function() {
- var the_link = document.createElement("a");
- assert_equals(the_link.nodeValue, null);
- the_link.nodeValue = "foo";
- assert_equals(the_link.nodeValue, null);
-}, "Element.nodeValue");
-
-test(function() {
- assert_equals(document.nodeValue, null);
- document.nodeValue = "foo";
- assert_equals(document.nodeValue, null);
-}, "Document.nodeValue");
-
-test(function() {
- var the_frag = document.createDocumentFragment();
- assert_equals(the_frag.nodeValue, null);
- the_frag.nodeValue = "foo";
- assert_equals(the_frag.nodeValue, null);
-}, "DocumentFragment.nodeValue");
-
-test(function() {
- var the_doctype = document.doctype;
- assert_equals(the_doctype.nodeValue, null);
- the_doctype.nodeValue = "foo";
- assert_equals(the_doctype.nodeValue, null);
-}, "DocumentType.nodeValue");
-</script>

Powered by Google App Engine
This is Rietveld 408576698