diff options
Diffstat (limited to 'testing/web-platform/tests/old-tests/webdriver/element_state/res')
59 files changed, 855 insertions, 0 deletions
diff --git a/testing/web-platform/tests/old-tests/webdriver/element_state/res/0x0-pixels.html b/testing/web-platform/tests/old-tests/webdriver/element_state/res/0x0-pixels.html new file mode 100644 index 000000000..3b081ca09 --- /dev/null +++ b/testing/web-platform/tests/old-tests/webdriver/element_state/res/0x0-pixels.html @@ -0,0 +1,12 @@ +<!DOCTYPE html> +<meta charset='utf-8'> +<title>0x0 pixel element</title> + +<style> +div { + height: 0; + width: 0; +} +</style> + +<div>This element is not visible.</div> diff --git a/testing/web-platform/tests/old-tests/webdriver/element_state/res/1x1-pixels.html b/testing/web-platform/tests/old-tests/webdriver/element_state/res/1x1-pixels.html new file mode 100644 index 000000000..f9b2cbc3c --- /dev/null +++ b/testing/web-platform/tests/old-tests/webdriver/element_state/res/1x1-pixels.html @@ -0,0 +1,12 @@ +<!DOCTYPE html> +<meta charset='utf-8'> +<title>1x1 pixel element</title> + +<style> +p { + height: 1px; + width: 1px; +} +</style> + +<p>This element is visible.</p> diff --git a/testing/web-platform/tests/old-tests/webdriver/element_state/res/a-with-href-attribute.html b/testing/web-platform/tests/old-tests/webdriver/element_state/res/a-with-href-attribute.html new file mode 100644 index 000000000..7722426a3 --- /dev/null +++ b/testing/web-platform/tests/old-tests/webdriver/element_state/res/a-with-href-attribute.html @@ -0,0 +1,5 @@ +<!DOCTYPE html> +<meta charset="utf-8" /> +<title>"a" element with not fully qualified url</title> + +<a href="//web-platform.test:8000/path#fragment"> </a>
\ No newline at end of file diff --git a/testing/web-platform/tests/old-tests/webdriver/element_state/res/absolute-children-ancestor-hidden-overflow.html b/testing/web-platform/tests/old-tests/webdriver/element_state/res/absolute-children-ancestor-hidden-overflow.html new file mode 100644 index 000000000..fcf104414 --- /dev/null +++ b/testing/web-platform/tests/old-tests/webdriver/element_state/res/absolute-children-ancestor-hidden-overflow.html @@ -0,0 +1,16 @@ +<!DOCTYPE html> +<meta charset=utf-8> +<title>Parent node visible with absolutely positioned children, where ancestor overflow is hidden</title> + +<style> + body { + overflow: hidden; + height: 0; + width: 0; + } + .child { position: absolute } +</style> + +<div id=parent> + <div class=child>grated</div> + <div class=child>cheese</div> diff --git a/testing/web-platform/tests/old-tests/webdriver/element_state/res/body_empty.html b/testing/web-platform/tests/old-tests/webdriver/element_state/res/body_empty.html new file mode 100644 index 000000000..0f4dff691 --- /dev/null +++ b/testing/web-platform/tests/old-tests/webdriver/element_state/res/body_empty.html @@ -0,0 +1,4 @@ +<!DOCTYPE html> +<meta charset=utf-8> +<title>BODY element has no children. MUST be reported displayed</title> +<body/> diff --git a/testing/web-platform/tests/old-tests/webdriver/element_state/res/body_implicit.html b/testing/web-platform/tests/old-tests/webdriver/element_state/res/body_implicit.html new file mode 100644 index 000000000..f45815380 --- /dev/null +++ b/testing/web-platform/tests/old-tests/webdriver/element_state/res/body_implicit.html @@ -0,0 +1,3 @@ +<!DOCTYPE html> +<meta charset=utf-8> +<title>BODY tag is omitted; BODY element MUST be reported displayed</title> diff --git a/testing/web-platform/tests/old-tests/webdriver/element_state/res/body_overflow_hidden.html b/testing/web-platform/tests/old-tests/webdriver/element_state/res/body_overflow_hidden.html new file mode 100644 index 000000000..1411ef37b --- /dev/null +++ b/testing/web-platform/tests/old-tests/webdriver/element_state/res/body_overflow_hidden.html @@ -0,0 +1,4 @@ +<!DOCTYPE html> +<meta charset=utf-8> +<title>BODY element with style=overflow:hidden. MUST be reported displayed</title> +<body style="overflow:hidden"/> diff --git a/testing/web-platform/tests/old-tests/webdriver/element_state/res/body_visibility_hidden.html b/testing/web-platform/tests/old-tests/webdriver/element_state/res/body_visibility_hidden.html new file mode 100644 index 000000000..ce4d41036 --- /dev/null +++ b/testing/web-platform/tests/old-tests/webdriver/element_state/res/body_visibility_hidden.html @@ -0,0 +1,4 @@ +<!DOCTYPE html> +<meta charset=utf-8> +<title>BODY element with style=visibility:hidden. MUST be reported displayed</title> +<body style="visibility:hidden"/> diff --git a/testing/web-platform/tests/old-tests/webdriver/element_state/res/display-block.html b/testing/web-platform/tests/old-tests/webdriver/element_state/res/display-block.html new file mode 100644 index 000000000..0f31557e6 --- /dev/null +++ b/testing/web-platform/tests/old-tests/webdriver/element_state/res/display-block.html @@ -0,0 +1,5 @@ +<!DOCTYPE html> +<meta charset='utf-8'> +<title>display: block;</title> + +<p>This element is visible.</p> diff --git a/testing/web-platform/tests/old-tests/webdriver/element_state/res/display-none-child-link.html b/testing/web-platform/tests/old-tests/webdriver/element_state/res/display-none-child-link.html new file mode 100644 index 000000000..88bdef6b5 --- /dev/null +++ b/testing/web-platform/tests/old-tests/webdriver/element_state/res/display-none-child-link.html @@ -0,0 +1,11 @@ +<!DOCTYPE html> +<meta charset="utf-8"> +<title>display: none applies to child node links</title> + +<style> +#parent { display: none } +</style> + +<div id="parent"> + <a id="child">hidden</a> +</div> diff --git a/testing/web-platform/tests/old-tests/webdriver/element_state/res/display-none-child-paragraph.html b/testing/web-platform/tests/old-tests/webdriver/element_state/res/display-none-child-paragraph.html new file mode 100644 index 000000000..31ab16da4 --- /dev/null +++ b/testing/web-platform/tests/old-tests/webdriver/element_state/res/display-none-child-paragraph.html @@ -0,0 +1,11 @@ +<!DOCTYPE html> +<meta charset="utf-8"> +<title>display: none applies to child node paragraphs</title> + +<style> +#parent { display: none } +</style> + +<div id="parent"> + <p id="child">hidden</p> +</div> diff --git a/testing/web-platform/tests/old-tests/webdriver/element_state/res/display-none-child.html b/testing/web-platform/tests/old-tests/webdriver/element_state/res/display-none-child.html new file mode 100644 index 000000000..b45ea0e5a --- /dev/null +++ b/testing/web-platform/tests/old-tests/webdriver/element_state/res/display-none-child.html @@ -0,0 +1,11 @@ +<!DOCTYPE html> +<meta charset="utf-8"> +<title>display: none applies to child nodes</title> + +<style> +#parent { display: none } +</style> + +<div id="parent"> + <div id="child">Brie is good</div> +</div> diff --git a/testing/web-platform/tests/old-tests/webdriver/element_state/res/display-none-dynamic.html b/testing/web-platform/tests/old-tests/webdriver/element_state/res/display-none-dynamic.html new file mode 100644 index 000000000..074f0b3c1 --- /dev/null +++ b/testing/web-platform/tests/old-tests/webdriver/element_state/res/display-none-dynamic.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<meta charset="utf-8" /> +<title>display: none set dynamically</title> + +<p id="hidden">Should not be visible</span> + +<script> + var hidden = document.getElementById("hidden"); + hidden.style.display = "none"; +</script> diff --git a/testing/web-platform/tests/old-tests/webdriver/element_state/res/display-none-parent-presedence-visibility.html b/testing/web-platform/tests/old-tests/webdriver/element_state/res/display-none-parent-presedence-visibility.html new file mode 100644 index 000000000..37ca02391 --- /dev/null +++ b/testing/web-platform/tests/old-tests/webdriver/element_state/res/display-none-parent-presedence-visibility.html @@ -0,0 +1,15 @@ +<!DOCTYPE html> +<meta charset="utf-8" /> +<title>display: none on parent takes presedence over visibility: visible on child node</title> + +<style> + #parent { display: none } + #child { visibility: visible } +</style> + +<div id="parent"> + <div id="child"> + hidden + </div> +</div> +in
\ No newline at end of file diff --git a/testing/web-platform/tests/old-tests/webdriver/element_state/res/display-none-parent-presedence.html b/testing/web-platform/tests/old-tests/webdriver/element_state/res/display-none-parent-presedence.html new file mode 100644 index 000000000..0f166d1e5 --- /dev/null +++ b/testing/web-platform/tests/old-tests/webdriver/element_state/res/display-none-parent-presedence.html @@ -0,0 +1,14 @@ +<!DOCTYPE html> +<meta charset="utf-8" /> +<title>display: none on parent takes presedence</title> + +<style> + #parent { display: none } + #child { dipslay: block } +</style> + +<div id="parent"> + <div id="child"> + hidden + </div> +</div> diff --git a/testing/web-platform/tests/old-tests/webdriver/element_state/res/display-none.html b/testing/web-platform/tests/old-tests/webdriver/element_state/res/display-none.html new file mode 100644 index 000000000..469fc934b --- /dev/null +++ b/testing/web-platform/tests/old-tests/webdriver/element_state/res/display-none.html @@ -0,0 +1,11 @@ +<!DOCTYPE html> +<meta charset='utf-8'> +<title>display: none;</title> + +<style> +p { + display: none; +} +</style> + +<p>This element is not visible.</p> diff --git a/testing/web-platform/tests/old-tests/webdriver/element_state/res/element-dynamically-moved-outside-viewport.html b/testing/web-platform/tests/old-tests/webdriver/element_state/res/element-dynamically-moved-outside-viewport.html new file mode 100644 index 000000000..e31912bfd --- /dev/null +++ b/testing/web-platform/tests/old-tests/webdriver/element_state/res/element-dynamically-moved-outside-viewport.html @@ -0,0 +1,15 @@ +<!DOCTYPE html> +<meta charset="utf-8" /> +<title>Element outside viewport</title> + +<style> + div { position: absolute } +</style> + +<div>hidden</div> + +<script> + var el = document.getElementsByTagName("div")[0]; + el.style.top = "-500px"; + el.style.left = "-500px"; +</script> diff --git a/testing/web-platform/tests/old-tests/webdriver/element_state/res/element-hidden-by-other-element.html b/testing/web-platform/tests/old-tests/webdriver/element_state/res/element-hidden-by-other-element.html new file mode 100644 index 000000000..a2cf645a3 --- /dev/null +++ b/testing/web-platform/tests/old-tests/webdriver/element_state/res/element-hidden-by-other-element.html @@ -0,0 +1,20 @@ +<!DOCTYPE html> +<meta charset="utf-8" /> +<title>Element hidden by other element</title> + +<style> + div { + position: absolute; + height: 100px; + width: 100px; + } + + #overlay { + background: blue; + } + + #hidden { background: red } +</style> + +<div id="hidden"></div> +<div id="overlay"></div> diff --git a/testing/web-platform/tests/old-tests/webdriver/element_state/res/element-hidden-by-z-index.html b/testing/web-platform/tests/old-tests/webdriver/element_state/res/element-hidden-by-z-index.html new file mode 100644 index 000000000..05e8eebeb --- /dev/null +++ b/testing/web-platform/tests/old-tests/webdriver/element_state/res/element-hidden-by-z-index.html @@ -0,0 +1,29 @@ +<!DOCTYPE html> +<meta charset="utf-8" /> +<title>Element hidden by z-index</title> + +<style> + * { position: relative } + + #overlay, + #hidden { + height: 50px; + width: 50px; + } + + #overlay { + background: blue; + + z-index: 1; + } + + #hidden { + background: red; + top: -50px; + + z-index: -1; + } +</style> + +<div id="overlay"></div> +<div id="hidden"></div> diff --git a/testing/web-platform/tests/old-tests/webdriver/element_state/res/element-moved-behind-other-element-by-transform.html b/testing/web-platform/tests/old-tests/webdriver/element_state/res/element-moved-behind-other-element-by-transform.html new file mode 100644 index 000000000..f91e729de --- /dev/null +++ b/testing/web-platform/tests/old-tests/webdriver/element_state/res/element-moved-behind-other-element-by-transform.html @@ -0,0 +1,31 @@ +<!DOCTYPE html> +<meta charset="utf-8" /> +<title>Element moved behind other element by transform</title> + +<style> + * { position: relative } + + #overlay { + height: 50px; + width: 50px; + background: blue; + z-index: 1; + } + + #hidden { + height: 50px; + width: 50px; + background: red; + z-index: -1; + + transform: translate(0, -50px); + + /* fix your browsers god damnit */ + -webkit-transform: translate(0, -50px); + -moz-transform: translate(0x, -50px); + } +</style> + +<div id="overlay"></div> +<div id="hidden"></div> + diff --git a/testing/web-platform/tests/old-tests/webdriver/element_state/res/element-moved-outside-viewport-by-transform.html b/testing/web-platform/tests/old-tests/webdriver/element_state/res/element-moved-outside-viewport-by-transform.html new file mode 100644 index 000000000..51f6ee89f --- /dev/null +++ b/testing/web-platform/tests/old-tests/webdriver/element_state/res/element-moved-outside-viewport-by-transform.html @@ -0,0 +1,15 @@ +<!DOCTYPE html> +<meta charset="utf-8" /> +<title>Element moved outside viewpor by transform</title> + +<style> + div { + transform: translate(-200px, -200px); + + /* fix your browsers god damnit */ + -webkit-transform: translate(-200px, -200px); + -moz-transform: translate(-200px, -200px); + } +</style> + +<div>Cheddar!</div> diff --git a/testing/web-platform/tests/old-tests/webdriver/element_state/res/element-outside-viewport.html b/testing/web-platform/tests/old-tests/webdriver/element_state/res/element-outside-viewport.html new file mode 100644 index 000000000..e3382ad09 --- /dev/null +++ b/testing/web-platform/tests/old-tests/webdriver/element_state/res/element-outside-viewport.html @@ -0,0 +1,13 @@ +<!DOCTYPE html> +<meta charset="utf-8" /> +<title>Element outside viewport</title> + +<style> + div { + position: absolute; + top: -500px; + left: -500px; + } +</style> + +<div>hidden</div> diff --git a/testing/web-platform/tests/old-tests/webdriver/element_state/res/element-partially-hidden-by-other-element.html b/testing/web-platform/tests/old-tests/webdriver/element_state/res/element-partially-hidden-by-other-element.html new file mode 100644 index 000000000..3d0325928 --- /dev/null +++ b/testing/web-platform/tests/old-tests/webdriver/element_state/res/element-partially-hidden-by-other-element.html @@ -0,0 +1,23 @@ +<!DOCTYPE html> +<meta charset="utf-8" /> +<title>Element partially hidden by other element</title> + +<style> + div { + height: 100px; + width: 100px; + } + + #partial { + background: yellow; + } + + #other { + background: blue; + margin-top: -50px; + margin-left: 50px; + } +</style> + +<div id="partial"></div> +<div id="other"></div> diff --git a/testing/web-platform/tests/old-tests/webdriver/element_state/res/element-selected.html b/testing/web-platform/tests/old-tests/webdriver/element_state/res/element-selected.html new file mode 100644 index 000000000..c2ad98924 --- /dev/null +++ b/testing/web-platform/tests/old-tests/webdriver/element_state/res/element-selected.html @@ -0,0 +1,89 @@ +<html> +<body> +<select> + <option id="selected-1">selected-1</option> +</select> +<select> + <option id="selected-2">selected-2</option> + <option id="unselected-1">unselected-1</option> +</select> +<select disabled> + <option id="unselected-2">unselected-2</option> + <option id="selected-3" selected>selected-3</option> + <option id="unselected-3">unselected-3</option> +</select> +<select> + <option id="unselected-4" checked>unselected-4</option> + <option id="unselected-5">unselected-5</option> + <option id="selected-4" selected>selected-4</option> +</select> +<select> + <option id="unselected-6" selected>unselected-6</option> + <option id="selected-5">selected-5</option> +</select> +<script> + document.getElementById("selected-5").selected = true; +</script> +<select multiple> + <option id="unselected-7">unselected-7</option> + <option id="unselected-8">unselected-8</option> +</select> +<select multiple> + <option id="selected-6" selected>selected-6</option> + <option id="unselected-9" selected>unselected-9</option> + <option id="selected-7">selected-7</option> +</select> +<script> + document.getElementById("unselected-9").selected = false; + document.getElementById("selected-7").selected = true; +</script> + +<h1>Input Checkbox Elements</h1> +<input type="checkbox" id="selected-8" />selected-8 +<script> + document.getElementById("selected-8").checked = true; +</script> +<input type="checkbox" id="selected-9" checked />selected-9 +<script> + document.getElementById("selected-9").indeterminate = true; +</script> +<input type="checkbox" id="unselected-10" />unselected-10 +<input type="checkbox" id="unselected-11" checked />unselected-11 +<script> + document.getElementById("unselected-11").checked = false; +</script> +<input type="checkbox" id="unselected-12" />unselected-12 +<script> + document.getElementById("unselected-12").indeterminate = true; +</script> +<input type="checkbox" id="unselected-13" selected />unselected-13 +<input type="checkbox" id="selected-10" checked />selected-10 + +<h1>Input Radio Elements</h1> +<br>Group 1:<br> +<input type="radio" name="group1" id="selected-11" checked />selected-11 +<br>Group 2:<br> +<input type="radio" name="group2" id="selected-12" />selected-12 +<script> + document.getElementById("selected-12").checked = true; +</script> +<br>Group 3:<br> +<input type="radio" name="group3" id="unselected-14" />unselected-14 +<input type="radio" name="group3" id="selected-13" checked />selected-13 +<br>Group 4:<br> +<input type="radio" name="group4" id="unselected-15" checked />unselected-15 +<input type="radio" name="group4" id="selected-14" checked />selected-14 +<br>Group 5:<br> +<input type="radio" name="group5" id="unselected-16" />unselected-16 +<input type="radio" name="group5" id="unselected-17" checked />unselected-17 +<script> + document.getElementById("unselected-17").checked = false; +</script> +<br>Group 6<br> +<input type="radio" name="group6" id="selected-15" />selected-15 +<input type="radio" name="group6" id="unselected-18" checked />unselected-18 +<script> + document.getElementById("selected-15").checked = true; +</script> +</body> +</html> diff --git a/testing/web-platform/tests/old-tests/webdriver/element_state/res/element-with-color-style-attribute.html b/testing/web-platform/tests/old-tests/webdriver/element_state/res/element-with-color-style-attribute.html new file mode 100644 index 000000000..acf2fc095 --- /dev/null +++ b/testing/web-platform/tests/old-tests/webdriver/element_state/res/element-with-color-style-attribute.html @@ -0,0 +1,5 @@ +<!DOCTYPE html> +<meta charset="utf-8" /> +<title>Element with color style attribute</title> + +<div style="color: red"> </div>
\ No newline at end of file diff --git a/testing/web-platform/tests/old-tests/webdriver/element_state/res/element-with-custom-attribute.html b/testing/web-platform/tests/old-tests/webdriver/element_state/res/element-with-custom-attribute.html new file mode 100644 index 000000000..8f84b97ff --- /dev/null +++ b/testing/web-platform/tests/old-tests/webdriver/element_state/res/element-with-custom-attribute.html @@ -0,0 +1,5 @@ +<!DOCTYPE html> +<meta charset="utf-8" /> +<title>Element with custom attribute</title> + +<div webdriver-custom-attribute="attribute value"> </div>
\ No newline at end of file diff --git a/testing/web-platform/tests/old-tests/webdriver/element_state/res/element-with-id-attribute.html b/testing/web-platform/tests/old-tests/webdriver/element_state/res/element-with-id-attribute.html new file mode 100644 index 000000000..7512344f5 --- /dev/null +++ b/testing/web-platform/tests/old-tests/webdriver/element_state/res/element-with-id-attribute.html @@ -0,0 +1,5 @@ +<!DOCTYPE html> +<meta charset="utf-8" /> +<title>Element with id attribute</title> + +<div id="myId"> </div>
\ No newline at end of file diff --git a/testing/web-platform/tests/old-tests/webdriver/element_state/res/element-with-same-color-as-background.html b/testing/web-platform/tests/old-tests/webdriver/element_state/res/element-with-same-color-as-background.html new file mode 100644 index 000000000..aaea9a935 --- /dev/null +++ b/testing/web-platform/tests/old-tests/webdriver/element_state/res/element-with-same-color-as-background.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<meta charset="utf-8" /> +<title>Element with same color as background</title> + +<style> + body, div { background: white } + div { width: 50px; height: 50px; } +</style> + +<div> </div> diff --git a/testing/web-platform/tests/old-tests/webdriver/element_state/res/element-with-same-color-as-parent-background.html b/testing/web-platform/tests/old-tests/webdriver/element_state/res/element-with-same-color-as-parent-background.html new file mode 100644 index 000000000..80a4118df --- /dev/null +++ b/testing/web-platform/tests/old-tests/webdriver/element_state/res/element-with-same-color-as-parent-background.html @@ -0,0 +1,18 @@ +<!DOCTYPE html> +<meta charset="utf-8" /> +<title>Element with same color as background</title> + +<style> + #overlay, + #hidden { + background: blue; + width: 50px; height: 50px; + } + + #hidden { + margin-top: -50px; + } +</style> + +<div id="overlay"></div> +<div id="hidden"></div> diff --git a/testing/web-platform/tests/old-tests/webdriver/element_state/res/element-with-style-attribute.html b/testing/web-platform/tests/old-tests/webdriver/element_state/res/element-with-style-attribute.html new file mode 100644 index 000000000..b163a751a --- /dev/null +++ b/testing/web-platform/tests/old-tests/webdriver/element_state/res/element-with-style-attribute.html @@ -0,0 +1,5 @@ +<!DOCTYPE html> +<meta charset="utf-8" /> +<title>Element with style attribute</title> + +<div style='font-family: "Gill Sans Extrabold", Helvetica, sans-serif; line-height: 1.2; font-weight:bold'> </div>
\ No newline at end of file diff --git a/testing/web-platform/tests/old-tests/webdriver/element_state/res/element-without-attribute.html b/testing/web-platform/tests/old-tests/webdriver/element_state/res/element-without-attribute.html new file mode 100644 index 000000000..b03d4545b --- /dev/null +++ b/testing/web-platform/tests/old-tests/webdriver/element_state/res/element-without-attribute.html @@ -0,0 +1,5 @@ +<!DOCTYPE html> +<meta charset="utf-8" /> +<title>Element without attribute</title> + +<div> </div>
\ No newline at end of file diff --git a/testing/web-platform/tests/old-tests/webdriver/element_state/res/elements_text.html b/testing/web-platform/tests/old-tests/webdriver/element_state/res/elements_text.html new file mode 100644 index 000000000..45b7c2370 --- /dev/null +++ b/testing/web-platform/tests/old-tests/webdriver/element_state/res/elements_text.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<meta charset="utf-8"> + +<title>Element location</title> + +<body> + <div id="id">id</div> + <div id="name" name="name">name</div> + <a id="link">link text</a> +</body> diff --git a/testing/web-platform/tests/old-tests/webdriver/element_state/res/get-element-attribute-extended.html b/testing/web-platform/tests/old-tests/webdriver/element_state/res/get-element-attribute-extended.html new file mode 100644 index 000000000..1fff60f03 --- /dev/null +++ b/testing/web-platform/tests/old-tests/webdriver/element_state/res/get-element-attribute-extended.html @@ -0,0 +1,72 @@ +<!DOCTYPE html> +<meta charset=utf-8> +<title>Get Element Attribute Extended</title> + +<span id=my_id_with_a_relatively_long_name_test class=my_id_with_a_relatively_long_name_test_class>Span</span> +<span id=my-id>Span</span> + +<div class=container> + <div id=div1 name=div-name> + <div id=div1-1_div1> + <h1 id=h1_div1.1_div1 class=span-class>h1 element, id:h1_div1.1_div1</h1> + </div> + </div> + + <div class=div-depth-2> + <div class=div-depth-3> + <div class=div-depth-4> + <span id=my_id_with_a_relatively_long_name_test class=my_id_with_a_relatively_long_name_test_class>Span</span> + </div> + </div> + </div> + + <div> + <a>anchor text 123</a> + <a>anchor text 123</a> + + <select> + <option id="opt-1" style="font-size: 11px; display: block;" selected>My Option 1</option> + <option class="opt" >My Option 2</option> + <option value="one">My Option 3</option> + </select> + </div> + + <a id="no-vi-1" class="cant-see" style="display:none">no visibility</a><br/> + <a id="no-vi-2" style="display:none">no visibility</a><br/> + <a id="no-vi-2" style="display:none">no visibility</a><br/> + + <span id=my_id_with_a_relatively_long_name_test2>Span</span> + <span id="id.period">Span</span> +</div> + +<div id=id_attribute_accesskey accesskey=nothing></div> + +<!-- Multiple elements with same class --> + +<div id=id_div_multiple_elements_same_class_nested_depth_0 class=multiple_elements_same_class_nested> + <div id=id_multiple_elements_same_class_nested_div_depth_1 class=multiple_elements_same_class_nested> + <div id=id_multiple_elements_same_class_nested_div_depth_2 class=multiple_elements_same_class_nested> + </div> + </div> +</div> + +<!-- Attribute name with special characters --> +<div id=id_special_char_attribute_name *=special_char_attribute_name></div> + +<!-- Attribute value with special characters --> +<div id=id_special_char_attribute_value name="*"></div> + +<!-- Attribute value and name with special characters --> +<div id=id_special_char_attribute_name_and_value @="("></div> + +<!-- Attribute name is numeric. --> +<div id"id_attribute_name_numeric 1="numeric attribute name"></div> + +<!-- Attribute value is numeric. --> +<div id=id_attribute_value_numeric one=2></div> + +<!-- Attribute name is negative numeric. --> +<div id=id_attribute_negative_numeric_name -5="attribute name is -5"></div> + +<!-- Attribute value is negative numeric. --> +<div id=id_attribute_negative_numeric_value negative_numeric_value=-9></div> diff --git a/testing/web-platform/tests/old-tests/webdriver/element_state/res/hidden-input-type-checkbox-untogglable.html b/testing/web-platform/tests/old-tests/webdriver/element_state/res/hidden-input-type-checkbox-untogglable.html new file mode 100644 index 000000000..7e7c2e238 --- /dev/null +++ b/testing/web-platform/tests/old-tests/webdriver/element_state/res/hidden-input-type-checkbox-untogglable.html @@ -0,0 +1,9 @@ +<!DOCTYPE html> +<meta charset="utf-8" /> +<title>Hidden INPUT @type="checkbox" is untogglable</title> + +<style> + input { display: none } +</style> + +<input type="checkbox" /> diff --git a/testing/web-platform/tests/old-tests/webdriver/element_state/res/hidden-input-type-text-writing.html b/testing/web-platform/tests/old-tests/webdriver/element_state/res/hidden-input-type-text-writing.html new file mode 100644 index 000000000..a1db85009 --- /dev/null +++ b/testing/web-platform/tests/old-tests/webdriver/element_state/res/hidden-input-type-text-writing.html @@ -0,0 +1,9 @@ +<!DOCTYPE html> +<meta charset="utf-8" /> +<title>Typing in hidden input is impossible</title> + +<style> + input { display: none } +</style> + +<input type="text" /> diff --git a/testing/web-platform/tests/old-tests/webdriver/element_state/res/hidden.html b/testing/web-platform/tests/old-tests/webdriver/element_state/res/hidden.html new file mode 100644 index 000000000..0e8097e97 --- /dev/null +++ b/testing/web-platform/tests/old-tests/webdriver/element_state/res/hidden.html @@ -0,0 +1,5 @@ +<!DOCTYPE html> +<div id='singleHidden' hidden>This will not be visible</div> +<div id='parent' hidden> + <div id='child'>My parent is hidden so you can't see me</div> +</div>
\ No newline at end of file diff --git a/testing/web-platform/tests/old-tests/webdriver/element_state/res/img-with-src-attribute.html b/testing/web-platform/tests/old-tests/webdriver/element_state/res/img-with-src-attribute.html new file mode 100644 index 000000000..057bb9bf5 --- /dev/null +++ b/testing/web-platform/tests/old-tests/webdriver/element_state/res/img-with-src-attribute.html @@ -0,0 +1,5 @@ +<!DOCTYPE html> +<meta charset="utf-8" /> +<title>"img" element with not fully qualified url</title> + +<img src="//web-platform.test:8000/images/blue.png"> </a>
\ No newline at end of file diff --git a/testing/web-platform/tests/old-tests/webdriver/element_state/res/input-morphs-into-hidden.html b/testing/web-platform/tests/old-tests/webdriver/element_state/res/input-morphs-into-hidden.html new file mode 100644 index 000000000..98b954855 --- /dev/null +++ b/testing/web-platform/tests/old-tests/webdriver/element_state/res/input-morphs-into-hidden.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<meta charset="utf-8" /> +<title>INPUT motphs into @type="hidden"</title> + +<input /> + +<script> + var input = document.getElementsByTagName("input")[0]; + input.type = "hidden"; +</script> diff --git a/testing/web-platform/tests/old-tests/webdriver/element_state/res/input-type-hidden-unclickable.html b/testing/web-platform/tests/old-tests/webdriver/element_state/res/input-type-hidden-unclickable.html new file mode 100644 index 000000000..b06822b10 --- /dev/null +++ b/testing/web-platform/tests/old-tests/webdriver/element_state/res/input-type-hidden-unclickable.html @@ -0,0 +1,5 @@ +<!DOCTYPE html> +<meta charset="utf-8" /> +<title>INPUT @type="hidden" is unclickable</title> + +<input type="hidden" /> diff --git a/testing/web-platform/tests/old-tests/webdriver/element_state/res/input-type-hidden.html b/testing/web-platform/tests/old-tests/webdriver/element_state/res/input-type-hidden.html new file mode 100644 index 000000000..b7195709d --- /dev/null +++ b/testing/web-platform/tests/old-tests/webdriver/element_state/res/input-type-hidden.html @@ -0,0 +1,5 @@ +<!DOCTYPE html> +<meta charset="utf-8" /> +<title>INPUT @type="hidden" are always hidden</title> + +<input type="hidden" /> diff --git a/testing/web-platform/tests/old-tests/webdriver/element_state/res/input-with-checked-attribute.html b/testing/web-platform/tests/old-tests/webdriver/element_state/res/input-with-checked-attribute.html new file mode 100644 index 000000000..d7aad5ea5 --- /dev/null +++ b/testing/web-platform/tests/old-tests/webdriver/element_state/res/input-with-checked-attribute.html @@ -0,0 +1,5 @@ +<!DOCTYPE html> +<meta charset="utf-8" /> +<title>Input with checked attribute</title> + +<input type=checkbox checked="false"> </input>
\ No newline at end of file diff --git a/testing/web-platform/tests/old-tests/webdriver/element_state/res/input-without-checked-attribute.html b/testing/web-platform/tests/old-tests/webdriver/element_state/res/input-without-checked-attribute.html new file mode 100644 index 000000000..9f1d5ad35 --- /dev/null +++ b/testing/web-platform/tests/old-tests/webdriver/element_state/res/input-without-checked-attribute.html @@ -0,0 +1,5 @@ +<!DOCTYPE html> +<meta charset="utf-8" /> +<title>Input without checked attribute</title> + +<input type=checkbox> </input>
\ No newline at end of file diff --git a/testing/web-platform/tests/old-tests/webdriver/element_state/res/option-with-value-attribute.html b/testing/web-platform/tests/old-tests/webdriver/element_state/res/option-with-value-attribute.html new file mode 100644 index 000000000..5ef08c405 --- /dev/null +++ b/testing/web-platform/tests/old-tests/webdriver/element_state/res/option-with-value-attribute.html @@ -0,0 +1,7 @@ +<!DOCTYPE html> +<meta charset="utf-8" /> +<title>Option with value attribute</title> + +<select> + <option value="value1">Value 1</option> +</select>
\ No newline at end of file diff --git a/testing/web-platform/tests/old-tests/webdriver/element_state/res/option-without-value-attribute.html b/testing/web-platform/tests/old-tests/webdriver/element_state/res/option-without-value-attribute.html new file mode 100644 index 000000000..5f6087ddd --- /dev/null +++ b/testing/web-platform/tests/old-tests/webdriver/element_state/res/option-without-value-attribute.html @@ -0,0 +1,7 @@ +<!DOCTYPE html> +<meta charset="utf-8" /> +<title>Option without value attribute</title> + +<select> + <option>Value 1</option> +</select>
\ No newline at end of file diff --git a/testing/web-platform/tests/old-tests/webdriver/element_state/res/text-with-matching-color-and-background.html b/testing/web-platform/tests/old-tests/webdriver/element_state/res/text-with-matching-color-and-background.html new file mode 100644 index 000000000..d6591ef04 --- /dev/null +++ b/testing/web-platform/tests/old-tests/webdriver/element_state/res/text-with-matching-color-and-background.html @@ -0,0 +1,14 @@ +<!DOCTYPE html> +<meta charset="utf-8" /> +<title>Text with matching color and background</title> + +<style> + p { + background: blue; + color: blue; + } +</style> + +<p> + This on the other hand, should be visible +</p> diff --git a/testing/web-platform/tests/old-tests/webdriver/element_state/res/text-with-same-color-as-background.html b/testing/web-platform/tests/old-tests/webdriver/element_state/res/text-with-same-color-as-background.html new file mode 100644 index 000000000..e6290d576 --- /dev/null +++ b/testing/web-platform/tests/old-tests/webdriver/element_state/res/text-with-same-color-as-background.html @@ -0,0 +1,12 @@ +<!DOCTYPE html> +<meta charset="utf-8" /> +<title>Text with same color as background</title> + +<style> + body { background: white } + p { color: white } +</style> + +<p> + Shouldn't be visible. +</p> diff --git a/testing/web-platform/tests/old-tests/webdriver/element_state/res/text-with-same-color-as-parent-background.html b/testing/web-platform/tests/old-tests/webdriver/element_state/res/text-with-same-color-as-parent-background.html new file mode 100644 index 000000000..f7480f509 --- /dev/null +++ b/testing/web-platform/tests/old-tests/webdriver/element_state/res/text-with-same-color-as-parent-background.html @@ -0,0 +1,14 @@ +<!DOCTYPE html> +<meta charset="utf-8" /> +<title>Text with same color as parent background</title> + +<style> + #parent { background: gray } + p { color: gray } +</style> + +<div id="parent"> + <p> + Should not be visible + </p> +</div>g diff --git a/testing/web-platform/tests/old-tests/webdriver/element_state/res/visibility-child-link.html b/testing/web-platform/tests/old-tests/webdriver/element_state/res/visibility-child-link.html new file mode 100644 index 000000000..638c3c9ee --- /dev/null +++ b/testing/web-platform/tests/old-tests/webdriver/element_state/res/visibility-child-link.html @@ -0,0 +1,11 @@ +<!DOCTYPE html> +<meta charset="utf-8" /> +<title>visibility: hidden applies to child node of type A</title> + +<style> +#parent { visibility: hidden } +</style> + +<div id="parent"> + <a id="child" href="#">Brie is good</a> +</div> diff --git a/testing/web-platform/tests/old-tests/webdriver/element_state/res/visibility-child-paragraph.html b/testing/web-platform/tests/old-tests/webdriver/element_state/res/visibility-child-paragraph.html new file mode 100644 index 000000000..8f703ba54 --- /dev/null +++ b/testing/web-platform/tests/old-tests/webdriver/element_state/res/visibility-child-paragraph.html @@ -0,0 +1,11 @@ +<!DOCTYPE html> +<meta charset="utf-8" /> +<title>visibility: hidden applies to child nodes of type P</title> + +<style> +#parent { visibility: hidden } +</style> + +<div id="parent"> + <p id="child">Brie is good</p> +</div> diff --git a/testing/web-platform/tests/old-tests/webdriver/element_state/res/visibility-child-presedence.html b/testing/web-platform/tests/old-tests/webdriver/element_state/res/visibility-child-presedence.html new file mode 100644 index 000000000..adf679c8a --- /dev/null +++ b/testing/web-platform/tests/old-tests/webdriver/element_state/res/visibility-child-presedence.html @@ -0,0 +1,12 @@ +<!DOCTYPE html> +<meta charset="utf-8"> +<title>visibility: visible on child node takes presedence</title> + +<style> +#parent { visibility: hidden } +#child { visibility: visible } +</style> + +<div id="parent"> + <div id="child">Brie is good</div> +</div> diff --git a/testing/web-platform/tests/old-tests/webdriver/element_state/res/visibility-child.html b/testing/web-platform/tests/old-tests/webdriver/element_state/res/visibility-child.html new file mode 100644 index 000000000..5464025fa --- /dev/null +++ b/testing/web-platform/tests/old-tests/webdriver/element_state/res/visibility-child.html @@ -0,0 +1,11 @@ +<!DOCTYPE html> +<meta charset="utf-8" /> +<title>visibility: hidden applies to child nodes</title> + +<style> +#parent { visibility: hidden } +</style> + +<div id="parent"> + <div id="child">Brie is good</div> +</div> diff --git a/testing/web-platform/tests/old-tests/webdriver/element_state/res/visibility-hidden.html b/testing/web-platform/tests/old-tests/webdriver/element_state/res/visibility-hidden.html new file mode 100644 index 000000000..24e89499f --- /dev/null +++ b/testing/web-platform/tests/old-tests/webdriver/element_state/res/visibility-hidden.html @@ -0,0 +1,11 @@ +<!DOCTYPE html> +<meta charset='utf-8'> +<title>visibility: hidden;</title> + +<style> +p { + visibility: hidden; +} +</style> + +<p>This element is not visible.</p> diff --git a/testing/web-platform/tests/old-tests/webdriver/element_state/res/visibility-visible.html b/testing/web-platform/tests/old-tests/webdriver/element_state/res/visibility-visible.html new file mode 100644 index 000000000..e0c090217 --- /dev/null +++ b/testing/web-platform/tests/old-tests/webdriver/element_state/res/visibility-visible.html @@ -0,0 +1,5 @@ +<!DOCTYPE html> +<meta charset='utf-8'> +<title>visibility: visible;</title> + +<p>This element is visible.</p> diff --git a/testing/web-platform/tests/old-tests/webdriver/element_state/res/x-auto-y-hidden.html b/testing/web-platform/tests/old-tests/webdriver/element_state/res/x-auto-y-hidden.html new file mode 100644 index 000000000..e9ce24c73 --- /dev/null +++ b/testing/web-platform/tests/old-tests/webdriver/element_state/res/x-auto-y-hidden.html @@ -0,0 +1,30 @@ +<!DOCTYPE html> +<html> +<head> + <title>Page with overflow</title> + <style> + #over { + width:400px; + height: 300px; + overflow-x: auto; + overflow-y: hidden; + } + </style> +</head> +<body> + <div id="over"> + <div style="width: 5000px;"> + <div style="width: 100%; text-align: right;" ><a href="#" id="right" onclick="document.getElementById('right-clicked').textContent='ok'">Click right</a></div> + </div> + <div style="height: 5000px; width: 5000px;"> + Right clicked: <span id="right-clicked"></span></br> + Bottom clicked: <span id="bottom-clicked"></span></br> + Bottom-right clicked: <span id="bottom-right-clicked"></span></br> + </div> + <div style="width: 5000px;"> + <div style="width: 100%; text-align: right;" ><a href="#" id="bottom-right" onclick="document.getElementById('bottom-right-clicked').textContent='ok'">Click bottom-right</a></div> + </div> + <a href="#" id="bottom" onclick="document.getElementById('bottom-clicked').textContent='ok'">Click bottom</a> + </div> +</body> +</html> diff --git a/testing/web-platform/tests/old-tests/webdriver/element_state/res/x-hidden-y-auto.html b/testing/web-platform/tests/old-tests/webdriver/element_state/res/x-hidden-y-auto.html new file mode 100644 index 000000000..22b5049ff --- /dev/null +++ b/testing/web-platform/tests/old-tests/webdriver/element_state/res/x-hidden-y-auto.html @@ -0,0 +1,30 @@ +<!DOCTYPE html> +<html> +<head> + <title>Page with overflow</title> + <style> + #over { + width:400px; + height: 300px; + overflow-x: hidden; + overflow-y: auto; + } + </style> +</head> +<body> + <div id="over"> + <div style="width: 5000px;"> + <div style="width: 100%; text-align: right;" ><a href="#" id="right" onclick="document.getElementById('right-clicked').textContent='ok'">Click right</a></div> + </div> + <div style="height: 5000px; width: 5000px;"> + Right clicked: <span id="right-clicked"></span></br> + Bottom clicked: <span id="bottom-clicked"></span></br> + Bottom-right clicked: <span id="bottom-right-clicked"></span></br> + </div> + <div style="width: 5000px;"> + <div style="width: 100%; text-align: right;" ><a href="#" id="bottom-right" onclick="document.getElementById('bottom-right-clicked').textContent='ok'">Click bottom-right</a></div> + </div> + <a href="#" id="bottom" onclick="document.getElementById('bottom-clicked').textContent='ok'">Click bottom</a> + </div> +</body> +</html> diff --git a/testing/web-platform/tests/old-tests/webdriver/element_state/res/x-hidden-y-hidden.html b/testing/web-platform/tests/old-tests/webdriver/element_state/res/x-hidden-y-hidden.html new file mode 100644 index 000000000..c26b48aea --- /dev/null +++ b/testing/web-platform/tests/old-tests/webdriver/element_state/res/x-hidden-y-hidden.html @@ -0,0 +1,30 @@ +<!DOCTYPE html> +<html> +<head> + <title>Page with overflow</title> + <style> + #over { + width:400px; + height: 300px; + overflow-x: hidden; + overflow-y: hidden; + } + </style> +</head> +<body> + <div id="over"> + <div style="width: 5000px;"> + <div style="width: 100%; text-align: right;" ><a href="#" id="right" onclick="document.getElementById('right-clicked').textContent='ok'">Click right</a></div> + </div> + <div style="height: 5000px; width: 5000px;"> + Right clicked: <span id="right-clicked"></span></br> + Bottom clicked: <span id="bottom-clicked"></span></br> + Bottom-right clicked: <span id="bottom-right-clicked"></span></br> + </div> + <div style="width: 5000px;"> + <div style="width: 100%; text-align: right;" ><a href="#" id="bottom-right" onclick="document.getElementById('bottom-right-clicked').textContent='ok'">Click bottom-right</a></div> + </div> + <a href="#" id="bottom" onclick="document.getElementById('bottom-clicked').textContent='ok'">Click bottom</a> + </div> +</body> +</html> diff --git a/testing/web-platform/tests/old-tests/webdriver/element_state/res/x-hidden-y-scroll.html b/testing/web-platform/tests/old-tests/webdriver/element_state/res/x-hidden-y-scroll.html new file mode 100644 index 000000000..b98b79a7e --- /dev/null +++ b/testing/web-platform/tests/old-tests/webdriver/element_state/res/x-hidden-y-scroll.html @@ -0,0 +1,30 @@ +<!DOCTYPE html> +<html> +<head> + <title>Page with overflow</title> + <style> + #over { + width:400px; + height: 300px; + overflow-x: hidden; + overflow-y: scroll; + } + </style> +</head> +<body> + <div id="over"> + <div style="width: 5000px;"> + <div style="width: 100%; text-align: right;" ><a href="#" id="right" onclick="document.getElementById('right-clicked').textContent='ok'">Click right</a></div> + </div> + <div style="height: 5000px; width: 5000px;"> + Right clicked: <span id="right-clicked"></span></br> + Bottom clicked: <span id="bottom-clicked"></span></br> + Bottom-right clicked: <span id="bottom-right-clicked"></span></br> + </div> + <div style="width: 5000px;"> + <div style="width: 100%; text-align: right;" ><a href="#" id="bottom-right" onclick="document.getElementById('bottom-right-clicked').textContent='ok'">Click bottom-right</a></div> + </div> + <a href="#" id="bottom" onclick="document.getElementById('bottom-clicked').textContent='ok'">Click bottom</a> + </div> +</body> +</html> diff --git a/testing/web-platform/tests/old-tests/webdriver/element_state/res/x-scroll-y-hidden.html b/testing/web-platform/tests/old-tests/webdriver/element_state/res/x-scroll-y-hidden.html new file mode 100644 index 000000000..9348681ac --- /dev/null +++ b/testing/web-platform/tests/old-tests/webdriver/element_state/res/x-scroll-y-hidden.html @@ -0,0 +1,30 @@ +<!DOCTYPE html> +<html> +<head> + <title>Page with overflow</title> + <style> + #over { + width:400px; + height: 300px; + overflow-x: scroll; + overflow-y: hidden; + } + </style> +</head> +<body> + <div id="over"> + <div style="width: 5000px;"> + <div style="width: 100%; text-align: right;" ><a href="#" id="right" onclick="document.getElementById('right-clicked').textContent='ok'">Click right</a></div> + </div> + <div style="height: 5000px; width: 5000px;"> + Right clicked: <span id="right-clicked"></span></br> + Bottom clicked: <span id="bottom-clicked"></span></br> + Bottom-right clicked: <span id="bottom-right-clicked"></span></br> + </div> + <div style="width: 5000px;"> + <div style="width: 100%; text-align: right;" ><a href="#" id="bottom-right" onclick="document.getElementById('bottom-right-clicked').textContent='ok'">Click bottom-right</a></div> + </div> + <a href="#" id="bottom" onclick="document.getElementById('bottom-clicked').textContent='ok'">Click bottom</a> + </div> +</body> +</html> diff --git a/testing/web-platform/tests/old-tests/webdriver/element_state/res/zero-sized-element-with-sizable-decendant.html b/testing/web-platform/tests/old-tests/webdriver/element_state/res/zero-sized-element-with-sizable-decendant.html new file mode 100644 index 000000000..f7e37f855 --- /dev/null +++ b/testing/web-platform/tests/old-tests/webdriver/element_state/res/zero-sized-element-with-sizable-decendant.html @@ -0,0 +1,14 @@ +<!DOCTYPE html> +<meta charset="utf-8" /> +<title>Zero sized element with sizable decendant</title> + +<style> + #parent { width: 0; height: 0; } + #child { width: 100; height: 100; background-color: blue; } +</style> + +<div id="parent"> + <div id="child"> + + </div> +</div> |