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

Unified Diff: third_party/WebKit/LayoutTests/imported/web-platform-tests/html/semantics/forms/form-control-infrastructure/form.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/html/semantics/forms/form-control-infrastructure/form.html
diff --git a/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/semantics/forms/form-control-infrastructure/form.html b/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/semantics/forms/form-control-infrastructure/form.html
deleted file mode 100644
index aa32560f3095fa785b652973b4ba624026e13b1b..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/semantics/forms/form-control-infrastructure/form.html
+++ /dev/null
@@ -1,46 +0,0 @@
-<!DOCTYPE html>
-<meta charset="utf-8">
-<title>HTMLInputElement#form</title>
-<link rel="author" title="Ms2ger" href="mailto:Ms2ger@gmail.com">
-<script src="../../../../../../resources/testharness.js"></script>
-<script src="../../../../../../resources/testharnessreport.js"></script>
-<div id="log"></div>
-<form id="form">
-<p><button id="button">button</button>
-<p><fieldset id="fieldset">fieldset</fieldset>
-<p><input id="input">
-<p><keygen id="keygen">
-<p><label id="label">label</label>
-<p><object id="object">object</object>
-<p><output id="output">output</output>
-<p><select id="select"><option>select</option></select>
-<p><textarea id="textarea">textarea</textarea>
-</form>
-<script>
-var form;
-setup(function() {
- form = document.getElementById("form");
- if (!form) {
- throw new TypeError("Didn't find form");
- }
-});
-
-var reassociateableElements = [
- "button",
- "fieldset",
- "input",
- "keygen",
- "label",
- "object",
- "output",
- "select",
- "textarea",
-];
-
-reassociateableElements.forEach(function(localName) {
- test(function() {
- var button = document.getElementById(localName);
- assert_equals(button.form, form);
- }, localName + ".form");
-});
-</script>

Powered by Google App Engine
This is Rietveld 408576698