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

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/HTMLTableColElement/resize-table-using-col-width.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/HTMLTableColElement/resize-table-using-col-width.html
diff --git a/third_party/WebKit/LayoutTests/fast/dom/HTMLTableColElement/resize-table-using-col-width.html b/third_party/WebKit/LayoutTests/fast/dom/HTMLTableColElement/resize-table-using-col-width.html
deleted file mode 100644
index 894be5996005f69f309c81efdef57ea5b31218a2..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/dom/HTMLTableColElement/resize-table-using-col-width.html
+++ /dev/null
@@ -1,46 +0,0 @@
-<html>
-<head>
-
- <script type="text/javascript">
-
- function changeColWidthUsingWidth()
- {
- var column = document.getElementById("col");
- column.width = "500px";
- }
-
- </script>
-</head>
-<body>
-
- <table border="1">
- <colgroup span="3">
- <col id="col" />
- <col />
- <col />
- </colgroup>
- <tbody>
- <tr>
- <td id="cell">col 1 row 1</td>
- <td>col 2 row 1</td>
- <td>col 3 row 1</td>
- </tr>
- <tr>
- <td>col 1 row 2</td>
- <td>col 2 row 2</td>
- <td>col 3 row 3</td>
- </tr>
- </tbody>
- </table>
- <button onclick="changeColWidthUsingWidth();">Click me to test manually. The first column should grow to 500px.</button>
-
- <script>
- if (window.eventSender) {
- eventSender.mouseMoveTo(50, 75);
- eventSender.mouseDown();
- eventSender.mouseUp();
- }
- </script>
-
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698