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

Unified Diff: third_party/WebKit/LayoutTests/fast/forms/form-added-to-table.html

Issue 2972623002: Convert fast/forms/form-added-to-table.html using testharness. (Closed)
Patch Set: Created 3 years, 5 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/platform/linux/fast/forms/form-added-to-table-expected.png » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/fast/forms/form-added-to-table.html
diff --git a/third_party/WebKit/LayoutTests/fast/forms/form-added-to-table.html b/third_party/WebKit/LayoutTests/fast/forms/form-added-to-table.html
index 209ec2595a3fb357993cee0cd1ba2c32db98aa21..9d7a58692cba28c58c6b1c992599e50d74369a4f 100644
--- a/third_party/WebKit/LayoutTests/fast/forms/form-added-to-table.html
+++ b/third_party/WebKit/LayoutTests/fast/forms/form-added-to-table.html
@@ -1,14 +1,18 @@
<html>
<head>
+<script src="../../resources/testharness.js"></script>
+<script src="../../resources/testharnessreport.js"></script>
<script>
+var t = async_test();
function loaded() {
var selection = window.getSelection();
var range = document.createRange();
range.selectNode(document.getElementById("selectMe"));
selection.addRange(range);
-
+
var table = document.createElement("table");
document.getElementById('form').appendChild(table);
+ t.done();
}
</script>
</head>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/platform/linux/fast/forms/form-added-to-table-expected.png » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698