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

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/HTMLTableElement/script-tests/rows.js

Issue 2667393002: Stop using script-tests in fast/dom/. (Closed)
Patch Set: . Created 3 years, 11 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/fast/dom/HTMLTableElement/script-tests/rows.js
diff --git a/third_party/WebKit/LayoutTests/fast/dom/HTMLTableElement/script-tests/rows.js b/third_party/WebKit/LayoutTests/fast/dom/HTMLTableElement/script-tests/rows.js
deleted file mode 100644
index 76a7fed9c118562b1643d045e8b1f2cc2c7f5574..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/dom/HTMLTableElement/script-tests/rows.js
+++ /dev/null
@@ -1,68 +0,0 @@
-description('Test behavior of the HTMLTableElement rows attribute in cases where there is unusual nesting.');
-
-function checkNoBodyRowNesting(tag)
-{
- var table = document.createElement("table");
- var container = document.createElement(tag);
- var row = document.createElement("tr");
- table.appendChild(container);
- container.appendChild(row);
- return table.rows.length;
-}
-
-function checkRowNesting(tag)
-{
- var table = document.createElement("table");
- var body = document.createElement("tbody");
- var container = document.createElement(tag);
- var row = document.createElement("tr");
- table.appendChild(body);
- body.appendChild(container);
- container.appendChild(row);
- return table.rows.length;
-}
-
-var sectionTags = [
- "tbody",
- "tfoot",
- "thead",
-];
-
-var otherTags = [
- "col",
- "colgroup",
- "div",
- "form",
- "script",
- "table",
- "td",
- "th",
-];
-
-for (i = 0; i < otherTags.length; ++i)
- shouldBe('checkRowNesting("' + otherTags[i] + '")', '0');
-
-debug('');
-
-for (i = 0; i < sectionTags.length; ++i)
- shouldBe('checkRowNesting("' + sectionTags[i] + '")', '0');
-
-debug('');
-
-shouldBe('checkRowNesting("tr")', '1');
-
-debug('');
-
-for (i = 0; i < otherTags.length; ++i)
- shouldBe('checkNoBodyRowNesting("' + otherTags[i] + '")', '0');
-
-debug('');
-
-for (i = 0; i < sectionTags.length; ++i)
- shouldBe('checkNoBodyRowNesting("' + sectionTags[i] + '")', '1');
-
-debug('');
-
-shouldBe('checkNoBodyRowNesting("tr")', '1');
-
-debug('');

Powered by Google App Engine
This is Rietveld 408576698