diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /testing/web-platform/tests/html/semantics/forms/the-optgroup-element | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'testing/web-platform/tests/html/semantics/forms/the-optgroup-element')
-rw-r--r-- | testing/web-platform/tests/html/semantics/forms/the-optgroup-element/.gitkeep | 0 | ||||
-rw-r--r-- | testing/web-platform/tests/html/semantics/forms/the-optgroup-element/optgroup-disabled-manual.html | 35 |
2 files changed, 35 insertions, 0 deletions
diff --git a/testing/web-platform/tests/html/semantics/forms/the-optgroup-element/.gitkeep b/testing/web-platform/tests/html/semantics/forms/the-optgroup-element/.gitkeep new file mode 100644 index 000000000..e69de29bb --- /dev/null +++ b/testing/web-platform/tests/html/semantics/forms/the-optgroup-element/.gitkeep diff --git a/testing/web-platform/tests/html/semantics/forms/the-optgroup-element/optgroup-disabled-manual.html b/testing/web-platform/tests/html/semantics/forms/the-optgroup-element/optgroup-disabled-manual.html new file mode 100644 index 000000000..ca8c6cda8 --- /dev/null +++ b/testing/web-platform/tests/html/semantics/forms/the-optgroup-element/optgroup-disabled-manual.html @@ -0,0 +1,35 @@ +<!DOCTYPE html> +<meta charset="utf-8"> +<title>HTMLOptGroupElement Test: disabled</title> +<meta name="flags" content="interact"> +<link rel="author" title="Intel" href="http://www.intel.com/"> + +<form> + <select> + <optgroup label="8.01" disabled> + <option value="8.01.1">Lecture 01: Powers of Ten</option> + <option value="8.01.2">Lecture 02: 1D Kinematics</option> + <option value="8.01.3">Lecture 03: Vectors</option> + </optgroup> + <optgroup label="8.02"> + <option value="8.02.1">Lecture 01: What holds our world together?</option> + <option value="8.02.2">Lecture 02: Electric Field</option> + <option value="8.02.3">Lecture 03: Electric Flux</option> + </optgroup> + </select> +</form> + +<h2>Description</h2> +<p> + This test validates that an optgroup element is disabled if its disabled attribute is present. +</p> + +<h2>Test steps:</h2> +<ol> + <li> + Click the select flag to select section '8.01' + </li> +</ol> + +<h2>Result:</h2> +<p>Click the select flag and try to select section 8.01, test passes if the section 8.01 is disable to be selected</p> |