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

Unified Diff: third_party/WebKit/LayoutTests/imported/web-platform-tests/html/semantics/forms/the-input-element/input-type-checkbox.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/the-input-element/input-type-checkbox.html
diff --git a/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/semantics/forms/the-input-element/input-type-checkbox.html b/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/semantics/forms/the-input-element/input-type-checkbox.html
deleted file mode 100644
index 67b7d286eef804ad2d757f3e71e4a77695e869f2..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/imported/web-platform-tests/html/semantics/forms/the-input-element/input-type-checkbox.html
+++ /dev/null
@@ -1,60 +0,0 @@
-<!DOCTYPE HTML>
-<head>
-<title>input type checkbox</title>
-<link rel="author" title="Gary Gao" href="mailto:angrytoast@gmail.com">
-<link rel="help" href="https://html.spec.whatwg.org/multipage/#checkbox-state-(type=checkbox)">
-<script src="../../../../../../resources/testharness.js"></script>
-<script src="../../../../../../resources/testharnessreport.js"></script>
-</head>
-<body>
-<div style="display:none;">
- <input id="checkbox_default" type="checkbox" width="20" />
-
- <input id="checkbox_checked" type="checkbox" checked />
-
- <input id="checkbox_indeterminate" type="checkbox" />
-
- <input id="checkbox_default_value" type="checkbox" />
-</div>
-
-<div id="log"></div>
-
-<script>
- var checkbox_default = document.getElementById('checkbox_default'),
- checkbox_checked = document.getElementById('checkbox_checked'),
- checkbox_indeterminate = document.getElementById('checkbox_indeterminate'),
- checkbox_default_value = document.getElementById('checkbox_default_value');
-
- test(function() {
- assert_false(checkbox_default.checked);
- }, "default checkbox has no checkedness state");
-
- test(function() {
- assert_true(checkbox_checked.checked);
- }, "checkbox with initial state set to checked has checkedness state");
-
- test(function() {
- checkbox_default.checked = 'chicken'
- assert_true(checkbox_default.checked);
- }, "changing the checked attribute to a string sets the checkedness state");
-
- test(function() {
- assert_false(checkbox_indeterminate.indeterminate);
- }, "a checkbox has an indeterminate state set to false onload");
-
- test(function() {
- checkbox_indeterminate.indeterminate = true,
- assert_true(checkbox_indeterminate.indeterminate);
- }, "on setting, a checkbox's indeterminate state must be set to the new value and returns the last value it was set to");
-
- test(function() {
- assert_equals(checkbox_default_value.value, 'on');
- }, "default/on: on getting, if the element has a value attribute, it must return that attribute's value; otherwise, it must return the string 'on'");
-
- test(function() {
- checkbox_default_value.value = 'chicken'
- assert_equals(checkbox_default_value.value, 'chicken');
- }, "on getting, if the element has a value attribute, it must return that attribute's value");
-</script>
-
-</body>

Powered by Google App Engine
This is Rietveld 408576698