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

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/HTMLTableElement/colSpan.html

Issue 2785963002: Move tests for table elements to LayoutTests/html/tabular_data/. (Closed)
Patch Set: Created 3 years, 9 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/colSpan.html
diff --git a/third_party/WebKit/LayoutTests/fast/dom/HTMLTableElement/colSpan.html b/third_party/WebKit/LayoutTests/fast/dom/HTMLTableElement/colSpan.html
deleted file mode 100644
index 01ff94e8a2d1ffd7c90626e50e7f68eea4cec893..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/dom/HTMLTableElement/colSpan.html
+++ /dev/null
@@ -1,77 +0,0 @@
-<html>
-<head>
-<title>colSpan test</title>
-
-<script type="text/javascript">
-
-function colSpanOne() {
-var x=document.getElementById('myTable1').rows[0].cells
-x[0].colSpan=""
-x[1].colSpan="7"
-}
-
-function colSpanTwo() {
-var x=document.getElementById('myTable2').rows[0].cells
-x[0].colSpan="0"
-x[1].colSpan="0"
-}
-
-</script>
-</head>
-
-<body onload = "colSpanOne(); colSpanTwo()">
-<p>Tests: the colspan attribute<br>
-</p>
-<p>Conditions:<br>
-The colSpan attribute specifies the number of columns spanned by the current cell. The default value of
-this attribute is one ("1"). The value zero ("0") means that the cell spans all columns from the current
-column to the last column of the column group (COLGROUP) in which the cell is defined.
-</p>
-<p>The first table tests the default value of one, and an input of 7, which is within the normal range of expect input.
-The first column in the first row should span only column "one" and the second cell should span all of the other columns.
-The second table tests the zero value. "Just A" should span "A" and "Just B" should span "B."
-</p>
-<hr>
-
-<br>
-<table id="myTable1" border="1">
-<caption>Testing Default and Regular Input</caption>
-<tr>
-<td colspan="4">First</td>
-<td colspan="4">All the Rest</td>
-</tr>
-<tr>
-<td>one</td>
-<td>two</td>
-<td>three</td>
-<td>four</td>
-<td>five</td>
-<td>six</td>
-<td>seven</td>
-<td>eight</td>
-</tr>
-</table>
-
-<br>
-<table id="myTable2" border="1">
-<caption>Testing Zero Special Case</caption>
-<tr>
-<td colspan="4">Just A</td>
-<td colspan="4">Just B</td>
-</tr>
-<tr>
-<td>A</td>
-<td>B</td>
-<td>C</td>
-<td>D</td>
-<td>E</td>
-<td>F</td>
-<td>G</td>
-<td>H</td>
-</tr>
-</table>
-
-</body>
-
-</html>
-

Powered by Google App Engine
This is Rietveld 408576698