diff options
Diffstat (limited to 'testing/web-platform/tests/html/obsolete')
29 files changed, 605 insertions, 0 deletions
diff --git a/testing/web-platform/tests/html/obsolete/.gitkeep b/testing/web-platform/tests/html/obsolete/.gitkeep new file mode 100644 index 000000000..e69de29bb --- /dev/null +++ b/testing/web-platform/tests/html/obsolete/.gitkeep diff --git a/testing/web-platform/tests/html/obsolete/non-conforming-features/.gitkeep b/testing/web-platform/tests/html/obsolete/non-conforming-features/.gitkeep new file mode 100644 index 000000000..e69de29bb --- /dev/null +++ b/testing/web-platform/tests/html/obsolete/non-conforming-features/.gitkeep diff --git a/testing/web-platform/tests/html/obsolete/obsolete-but-conforming-features/.gitkeep b/testing/web-platform/tests/html/obsolete/obsolete-but-conforming-features/.gitkeep new file mode 100644 index 000000000..e69de29bb --- /dev/null +++ b/testing/web-platform/tests/html/obsolete/obsolete-but-conforming-features/.gitkeep diff --git a/testing/web-platform/tests/html/obsolete/obsolete-but-conforming-features/warnings-for-obsolete-but-conforming-features/.gitkeep b/testing/web-platform/tests/html/obsolete/obsolete-but-conforming-features/warnings-for-obsolete-but-conforming-features/.gitkeep new file mode 100644 index 000000000..e69de29bb --- /dev/null +++ b/testing/web-platform/tests/html/obsolete/obsolete-but-conforming-features/warnings-for-obsolete-but-conforming-features/.gitkeep diff --git a/testing/web-platform/tests/html/obsolete/requirements-for-implementations/.gitkeep b/testing/web-platform/tests/html/obsolete/requirements-for-implementations/.gitkeep new file mode 100644 index 000000000..e69de29bb --- /dev/null +++ b/testing/web-platform/tests/html/obsolete/requirements-for-implementations/.gitkeep diff --git a/testing/web-platform/tests/html/obsolete/requirements-for-implementations/frames/.gitkeep b/testing/web-platform/tests/html/obsolete/requirements-for-implementations/frames/.gitkeep new file mode 100644 index 000000000..e69de29bb --- /dev/null +++ b/testing/web-platform/tests/html/obsolete/requirements-for-implementations/frames/.gitkeep diff --git a/testing/web-platform/tests/html/obsolete/requirements-for-implementations/other-elements-attributes-and-apis/.gitkeep b/testing/web-platform/tests/html/obsolete/requirements-for-implementations/other-elements-attributes-and-apis/.gitkeep new file mode 100644 index 000000000..e69de29bb --- /dev/null +++ b/testing/web-platform/tests/html/obsolete/requirements-for-implementations/other-elements-attributes-and-apis/.gitkeep diff --git a/testing/web-platform/tests/html/obsolete/requirements-for-implementations/other-elements-attributes-and-apis/document-all.html b/testing/web-platform/tests/html/obsolete/requirements-for-implementations/other-elements-attributes-and-apis/document-all.html new file mode 100644 index 000000000..37a92bb09 --- /dev/null +++ b/testing/web-platform/tests/html/obsolete/requirements-for-implementations/other-elements-attributes-and-apis/document-all.html @@ -0,0 +1,52 @@ +<!DOCTYPE html> +<title>document.all</title> +<link rel="author" title="Corey Farwell" href="mailto:coreyf@rwell.org"> +<link rel="help" href="https://html.spec.whatwg.org/multipage/obsolete.html#dom-document-all"> +<script src="/resources/testharness.js"></script> +<script src="/resources/testharnessreport.js"></script> +<div id="log"></div> +<script> +test(function () { + assert_false(Boolean(document.all)); + + assert_true(document.all == undefined); + assert_true(document.all == null); + assert_false(document.all != undefined); + assert_false(document.all != null); + + assert_true(document.all !== undefined); + assert_true(document.all !== null); + assert_false(document.all === undefined); + assert_false(document.all === null); + + assert_equals(typeof document.all, "undefined"); + + if (document.all) { assert_true(false); } + + if (!document.all) {} + else { assert_true(false); } +}, "'unusual behaviors' of document.all") + +test(function() { + var all = document.all; + + assert_false(Boolean(all)); + + assert_true(all == undefined); + assert_true(all == null); + assert_false(all != undefined); + assert_false(all != null); + + assert_true(all !== undefined); + assert_true(all !== null); + assert_false(all === undefined); + assert_false(all === null); + + assert_equals(typeof all, "undefined"); + + if (all) { assert_true(false); } + + if (!all) {} + else { assert_true(false); } +}, "'unusual behaviors' of document.all with assignment") +</script> diff --git a/testing/web-platform/tests/html/obsolete/requirements-for-implementations/other-elements-attributes-and-apis/document-color-01.html b/testing/web-platform/tests/html/obsolete/requirements-for-implementations/other-elements-attributes-and-apis/document-color-01.html new file mode 100644 index 000000000..38364cd3e --- /dev/null +++ b/testing/web-platform/tests/html/obsolete/requirements-for-implementations/other-elements-attributes-and-apis/document-color-01.html @@ -0,0 +1,53 @@ +<!DOCTYPE html> +<title>document: fg/bg/link/vlink/alink-color</title> +<link rel="author" title="Ms2ger" href="mailto:ms2ger@gmail.com"> +<link rel="help" href="https://html.spec.whatwg.org/multipage/#dom-document-fgcolor"> +<link rel="help" href="https://html.spec.whatwg.org/multipage/#dom-body-text"> +<script src="/resources/testharness.js"></script> +<script src="/resources/testharnessreport.js"></script> +<div id="log"></div> +<script> +test(function() { + document.fgColor = "green"; + document.bgColor = "green"; + document.linkColor = "green"; + document.vlinkColor = "green"; + document.alinkColor = "green"; + + var body = document.documentElement.removeChild(document.body); + + // When there is no body element, the color attributes return an + // empty string upon getting. + assert_equals(document.fgColor, ""); + assert_equals(document.bgColor, ""); + assert_equals(document.linkColor, ""); + assert_equals(document.vlinkColor, ""); + assert_equals(document.alinkColor, ""); + + // Re-add body and reset color attributes. + document.body = body; + document.fgColor = ""; + document.bgColor = ""; + document.linkColor = ""; + document.vlinkColor = ""; + document.alinkColor = ""; +}, "getting document color attributes with no body"); + +test(function() { + var body = document.documentElement.removeChild(document.body); + + // When there is no body element, setting the color attributes has no effect. + document.fgColor = "red"; + document.bgColor = "red"; + document.linkColor = "red"; + document.vlinkColor = "red"; + document.alinkColor = "red"; + assert_equals(document.fgColor, ""); + assert_equals(document.bgColor, ""); + assert_equals(document.linkColor, ""); + assert_equals(document.vlinkColor, ""); + assert_equals(document.alinkColor, ""); + + document.body = body; +}, "setting document color attributes with no body"); +</script> diff --git a/testing/web-platform/tests/html/obsolete/requirements-for-implementations/other-elements-attributes-and-apis/document-color-02.html b/testing/web-platform/tests/html/obsolete/requirements-for-implementations/other-elements-attributes-and-apis/document-color-02.html new file mode 100644 index 000000000..ebf15e79c --- /dev/null +++ b/testing/web-platform/tests/html/obsolete/requirements-for-implementations/other-elements-attributes-and-apis/document-color-02.html @@ -0,0 +1,53 @@ +<!DOCTYPE html> +<title>document: fg/bg/link/vlink/alink-color</title> +<link rel="author" title="Ms2ger" href="mailto:ms2ger@gmail.com"> +<link rel="help" href="https://html.spec.whatwg.org/multipage/#dom-document-fgcolor"> +<link rel="help" href="https://html.spec.whatwg.org/multipage/#dom-body-text"> +<script src="/resources/testharness.js"></script> +<script src="/resources/testharnessreport.js"></script> +<div id="log"></div> +<script> +test(function() { + assert_equals(document.fgColor, document.body.text); + assert_equals(document.bgColor, document.body.bgColor); + assert_equals(document.linkColor, document.body.link); + assert_equals(document.vlinkColor, document.body.vLink); + assert_equals(document.alinkColor, document.body.aLink); +}) +test(function() { + document.fgColor = null; + assert_equals(document.fgColor, ""); + assert_equals(document.body.text, ""); + assert_equals(document.body.getAttribute("text"), ""); +}) +test(function() { + document.fgColor = "blue"; + assert_equals(document.fgColor, "blue"); + assert_equals(document.body.text, "blue"); + assert_equals(document.body.getAttribute("text"), "blue"); +}) +test(function() { + document.bgColor = "green"; + assert_equals(document.bgColor, "green"); + assert_equals(document.body.bgColor, "green"); + assert_equals(document.body.getAttribute("bgcolor"), "green"); +}) +test(function() { + document.linkColor = "red"; + assert_equals(document.linkColor, "red"); + assert_equals(document.body.link, "red"); + assert_equals(document.body.getAttribute("link"), "red"); +}) +test(function() { + document.vlinkColor = "yellow"; + assert_equals(document.vlinkColor, "yellow"); + assert_equals(document.body.vLink, "yellow"); + assert_equals(document.body.getAttribute("vlink"), "yellow"); +}) +test(function() { + document.alinkColor = "silver"; + assert_equals(document.alinkColor, "silver"); + assert_equals(document.body.aLink, "silver"); + assert_equals(document.body.getAttribute("alink"), "silver"); +}) +</script> diff --git a/testing/web-platform/tests/html/obsolete/requirements-for-implementations/other-elements-attributes-and-apis/document-color-03.html b/testing/web-platform/tests/html/obsolete/requirements-for-implementations/other-elements-attributes-and-apis/document-color-03.html new file mode 100644 index 000000000..629c24627 --- /dev/null +++ b/testing/web-platform/tests/html/obsolete/requirements-for-implementations/other-elements-attributes-and-apis/document-color-03.html @@ -0,0 +1,53 @@ +<!DOCTYPE html> +<title>document: fg/bg/link/vlink/alink-color</title> +<link rel="author" title="Ms2ger" href="mailto:ms2ger@gmail.com"> +<link rel="help" href="https://html.spec.whatwg.org/multipage/#dom-document-fgcolor"> +<link rel="help" href="https://html.spec.whatwg.org/multipage/#dom-body-text"> +<script src="/resources/testharness.js"></script> +<script src="/resources/testharnessreport.js"></script> +<div id="log"></div> +<script> +test(function() { + assert_equals(document.fgColor, document.body.text); + assert_equals(document.bgColor, document.body.bgColor); + assert_equals(document.linkColor, document.body.link); + assert_equals(document.vlinkColor, document.body.vLink); + assert_equals(document.alinkColor, document.body.aLink); +}) +test(function() { + document.body.text = null; + assert_equals(document.fgColor, ""); + assert_equals(document.body.text, ""); + assert_equals(document.body.getAttribute("text"), ""); +}) +test(function() { + document.body.text = "blue"; + assert_equals(document.fgColor, "blue"); + assert_equals(document.body.text, "blue"); + assert_equals(document.body.getAttribute("text"), "blue"); +}) +test(function() { + document.body.bgColor = "green"; + assert_equals(document.bgColor, "green"); + assert_equals(document.body.bgColor, "green"); + assert_equals(document.body.getAttribute("bgcolor"), "green"); +}) +test(function() { + document.body.link = "red"; + assert_equals(document.linkColor, "red"); + assert_equals(document.body.link, "red"); + assert_equals(document.body.getAttribute("link"), "red"); +}) +test(function() { + document.body.vLink = "yellow"; + assert_equals(document.vlinkColor, "yellow"); + assert_equals(document.body.vLink, "yellow"); + assert_equals(document.body.getAttribute("vlink"), "yellow"); +}) +test(function() { + document.body.aLink = "silver"; + assert_equals(document.alinkColor, "silver"); + assert_equals(document.body.aLink, "silver"); + assert_equals(document.body.getAttribute("alink"), "silver"); +}) +</script> diff --git a/testing/web-platform/tests/html/obsolete/requirements-for-implementations/other-elements-attributes-and-apis/document-color-04.html b/testing/web-platform/tests/html/obsolete/requirements-for-implementations/other-elements-attributes-and-apis/document-color-04.html new file mode 100644 index 000000000..ca9fc21d8 --- /dev/null +++ b/testing/web-platform/tests/html/obsolete/requirements-for-implementations/other-elements-attributes-and-apis/document-color-04.html @@ -0,0 +1,47 @@ +<!DOCTYPE html> +<title>document: fg/bg/link/vlink/alink-color</title> +<link rel="author" title="Ms2ger" href="mailto:ms2ger@gmail.com"> +<link rel="help" href="https://html.spec.whatwg.org/multipage/#dom-document-fgcolor"> +<link rel="help" href="https://html.spec.whatwg.org/multipage/#dom-body-text"> +<script src="/resources/testharness.js"></script> +<script src="/resources/testharnessreport.js"></script> +<div id="log"></div> +<script> +test(function() { + assert_equals(document.fgColor, document.body.text); + assert_equals(document.bgColor, document.body.bgColor); + assert_equals(document.linkColor, document.body.link); + assert_equals(document.vlinkColor, document.body.vLink); + assert_equals(document.alinkColor, document.body.aLink); +}) +test(function() { + document.body.setAttribute("text", "blue"); + assert_equals(document.fgColor, "blue"); + assert_equals(document.body.text, "blue"); + assert_equals(document.body.getAttribute("text"), "blue"); +}) +test(function() { + document.body.setAttribute("bgcolor", "green"); + assert_equals(document.bgColor, "green"); + assert_equals(document.body.bgColor, "green"); + assert_equals(document.body.getAttribute("bgcolor"), "green"); +}) +test(function() { + document.body.setAttribute("link", "red"); + assert_equals(document.linkColor, "red"); + assert_equals(document.body.link, "red"); + assert_equals(document.body.getAttribute("link"), "red"); +}) +test(function() { + document.body.setAttribute("vlink", "yellow"); + assert_equals(document.vlinkColor, "yellow"); + assert_equals(document.body.vLink, "yellow"); + assert_equals(document.body.getAttribute("vlink"), "yellow"); +}) +test(function() { + document.body.setAttribute("alink", "silver"); + assert_equals(document.alinkColor, "silver"); + assert_equals(document.body.aLink, "silver"); + assert_equals(document.body.getAttribute("alink"), "silver"); +}) +</script> diff --git a/testing/web-platform/tests/html/obsolete/requirements-for-implementations/other-elements-attributes-and-apis/heading-obsolete-attributes-01.html b/testing/web-platform/tests/html/obsolete/requirements-for-implementations/other-elements-attributes-and-apis/heading-obsolete-attributes-01.html new file mode 100644 index 000000000..84c66b4c5 --- /dev/null +++ b/testing/web-platform/tests/html/obsolete/requirements-for-implementations/other-elements-attributes-and-apis/heading-obsolete-attributes-01.html @@ -0,0 +1,18 @@ +<!DOCTYPE html> +<title>HTMLHeadingElement: obsolete attribute reflecting</title> +<link rel="author" title="Ms2ger" href="mailto:ms2ger@gmail.com"> +<link rel="help" href="https://html.spec.whatwg.org/multipage/#dom-hx-align"> +<link rel="help" href="https://heycam.github.io/webidl/#es-DOMString"> +<link rel="help" href="http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-262.pdf#page=57"> +<script src="/resources/testharness.js"></script> +<script src="/resources/testharnessreport.js"></script> +<div id="log"></div> +<script> +test(function() { + var el = document.createElement("h7"); + el.align = "left"; + assert_equals(el.align, "left"); + assert_false(el.hasAttribute("align")); + assert_equals(el.getAttribute("align"), null); +}, "IDL attributes for HTMLHeadingElement should not apply to h7.") +</script> diff --git a/testing/web-platform/tests/html/obsolete/requirements-for-implementations/other-elements-attributes-and-apis/nothing.html b/testing/web-platform/tests/html/obsolete/requirements-for-implementations/other-elements-attributes-and-apis/nothing.html new file mode 100644 index 000000000..039495d78 --- /dev/null +++ b/testing/web-platform/tests/html/obsolete/requirements-for-implementations/other-elements-attributes-and-apis/nothing.html @@ -0,0 +1,27 @@ +<!doctype html> +<meta charset=utf-8> +<title>Methods that must do nothing: clear(), captureEvents(), and releaseEvents()</title> +<script src=/resources/testharness.js></script> +<script src=/resources/testharnessreport.js></script> +<div id=log></div> +<script> +test(function() { + assert_equals(document.clear(), undefined); +}, "document.clear"); + +test(function() { + assert_equals(document.captureEvents(), undefined); +}, "document.captureEvents"); + +test(function() { + assert_equals(document.releaseEvents(), undefined); +}, "document.releaseEvents"); + +test(function() { + assert_equals(window.captureEvents(), undefined); +}, "window.captureEvents"); + +test(function() { + assert_equals(window.releaseEvents(), undefined); +}, "window.releaseEvents"); +</script> diff --git a/testing/web-platform/tests/html/obsolete/requirements-for-implementations/other-elements-attributes-and-apis/original-id.json b/testing/web-platform/tests/html/obsolete/requirements-for-implementations/other-elements-attributes-and-apis/original-id.json new file mode 100644 index 000000000..601a7c08d --- /dev/null +++ b/testing/web-platform/tests/html/obsolete/requirements-for-implementations/other-elements-attributes-and-apis/original-id.json @@ -0,0 +1 @@ +{"original_id":"other-elements,-attributes-and-apis"}
\ No newline at end of file diff --git a/testing/web-platform/tests/html/obsolete/requirements-for-implementations/other-elements-attributes-and-apis/script-IDL-event-htmlfor.html b/testing/web-platform/tests/html/obsolete/requirements-for-implementations/other-elements-attributes-and-apis/script-IDL-event-htmlfor.html new file mode 100644 index 000000000..1a8c4a2f8 --- /dev/null +++ b/testing/web-platform/tests/html/obsolete/requirements-for-implementations/other-elements-attributes-and-apis/script-IDL-event-htmlfor.html @@ -0,0 +1,57 @@ +<!DOCTYPE html> +<title>event and htmlFor IDL attributes of HTMLScriptElement</title> +<link rel="author" title="Ms2ger" href="mailto:ms2ger@gmail.com"> +<link rel="help" href="https://html.spec.whatwg.org/multipage/#dom-script-event"> +<link rel="help" href="https://html.spec.whatwg.org/multipage/#dom-script-htmlfor"> +<script src="/resources/testharness.js"></script> +<script src="/resources/testharnessreport.js"></script> +<div id="log"></div> +<script> +test(function() { + var script = document.createElement("script"); + assert_equals(script.event, ""); + assert_equals(script.htmlFor, ""); +}) +test(function() { + var script = document.createElement("script"); + script.setAttribute("event", "blah"); + script.setAttribute("for", "blah"); + assert_equals(script.event, "blah"); + assert_equals(script.htmlFor, "blah"); + assert_equals(script.getAttribute("event"), "blah"); + assert_equals(script.getAttribute("for"), "blah"); +}) +test(function() { + var script = document.createElement("script"); + script.setAttribute("event", "blah"); + script.setAttribute("for", "blah"); + script.event = "foo"; + script.htmlFor = "foo"; + assert_equals(script.event, "foo"); + assert_equals(script.htmlFor, "foo"); + assert_equals(script.getAttribute("event"), "foo"); + assert_equals(script.getAttribute("for"), "foo"); +}) +test(function() { + var script = document.createElement("script"); + script.setAttribute("event", "blah"); + script.setAttribute("for", "blah"); + script.event = null; + script.htmlFor = null; + assert_equals(script.event, "null"); + assert_equals(script.htmlFor, "null"); + assert_equals(script.getAttribute("event"), "null"); + assert_equals(script.getAttribute("for"), "null"); +}) +test(function() { + var script = document.createElement("script"); + script.setAttribute("event", "blah"); + script.setAttribute("for", "blah"); + script.event = undefined; + script.htmlFor = undefined; + assert_equals(script.event, "undefined"); + assert_equals(script.htmlFor, "undefined"); + assert_equals(script.getAttribute("event"), "undefined"); + assert_equals(script.getAttribute("for"), "undefined"); +}) +</script> diff --git a/testing/web-platform/tests/html/obsolete/requirements-for-implementations/the-applet-element/.gitkeep b/testing/web-platform/tests/html/obsolete/requirements-for-implementations/the-applet-element/.gitkeep new file mode 100644 index 000000000..e69de29bb --- /dev/null +++ b/testing/web-platform/tests/html/obsolete/requirements-for-implementations/the-applet-element/.gitkeep diff --git a/testing/web-platform/tests/html/obsolete/requirements-for-implementations/the-marquee-element-0/.gitkeep b/testing/web-platform/tests/html/obsolete/requirements-for-implementations/the-marquee-element-0/.gitkeep new file mode 100644 index 000000000..e69de29bb --- /dev/null +++ b/testing/web-platform/tests/html/obsolete/requirements-for-implementations/the-marquee-element-0/.gitkeep diff --git a/testing/web-platform/tests/html/obsolete/requirements-for-implementations/the-marquee-element-0/marquee-direction-down-manual.html b/testing/web-platform/tests/html/obsolete/requirements-for-implementations/the-marquee-element-0/marquee-direction-down-manual.html new file mode 100644 index 000000000..a9d4a7f6b --- /dev/null +++ b/testing/web-platform/tests/html/obsolete/requirements-for-implementations/the-marquee-element-0/marquee-direction-down-manual.html @@ -0,0 +1,8 @@ +<!DOCTYPE html> +<meta charset="utf-8"> +<title>HTML Test: marquee-direction-down</title> +<link rel="author" title="Intel" href="http://www.intel.com/"> +<link rel="help" href="https://html.spec.whatwg.org/multipage/multipage/obsolete.html#the-marquee-element"> +<meta name="assert" content="Check if the marquee direction is from top to bottom"> +<p>Test passes if the text "Test Marquee" moves from top to bottom.</p> +<marquee direction="down">Test Marquee</marquee> diff --git a/testing/web-platform/tests/html/obsolete/requirements-for-implementations/the-marquee-element-0/marquee-direction-left-manual.html b/testing/web-platform/tests/html/obsolete/requirements-for-implementations/the-marquee-element-0/marquee-direction-left-manual.html new file mode 100644 index 000000000..cf08cca4b --- /dev/null +++ b/testing/web-platform/tests/html/obsolete/requirements-for-implementations/the-marquee-element-0/marquee-direction-left-manual.html @@ -0,0 +1,8 @@ +<!DOCTYPE html> +<meta charset="utf-8"> +<title>HTML Test: marquee-direction-left</title> +<link rel="author" title="Intel" href="http://www.intel.com/"> +<link rel="help" href="https://html.spec.whatwg.org/multipage/multipage/obsolete.html#the-marquee-element"> +<meta name="assert" content="Check if the marquee direction is from right to left"> +<p>Test passes if the text "Test Marquee" moves from right to left.</p> +<marquee direction="left">Test Marquee</marquee> diff --git a/testing/web-platform/tests/html/obsolete/requirements-for-implementations/the-marquee-element-0/marquee-direction-right-manual.html b/testing/web-platform/tests/html/obsolete/requirements-for-implementations/the-marquee-element-0/marquee-direction-right-manual.html new file mode 100644 index 000000000..b42c9454f --- /dev/null +++ b/testing/web-platform/tests/html/obsolete/requirements-for-implementations/the-marquee-element-0/marquee-direction-right-manual.html @@ -0,0 +1,8 @@ +<!DOCTYPE html> +<meta charset="utf-8"> +<title>HTML Test: marquee-direction-right</title> +<link rel="author" title="Intel" href="http://www.intel.com/"> +<link rel="help" href="https://html.spec.whatwg.org/multipage/multipage/obsolete.html#the-marquee-element"> +<meta name="assert" content="Check if the marquee direction is from left to right"> +<p>Test passes if the text "Test Marquee" moves from left to right.</p> +<marquee direction="right">Test Marquee</marquee> diff --git a/testing/web-platform/tests/html/obsolete/requirements-for-implementations/the-marquee-element-0/marquee-direction-up-manual.html b/testing/web-platform/tests/html/obsolete/requirements-for-implementations/the-marquee-element-0/marquee-direction-up-manual.html new file mode 100644 index 000000000..040609fb6 --- /dev/null +++ b/testing/web-platform/tests/html/obsolete/requirements-for-implementations/the-marquee-element-0/marquee-direction-up-manual.html @@ -0,0 +1,8 @@ +<!DOCTYPE html> +<meta charset="utf-8"> +<title>HTML Test: marquee-direction-up</title> +<link rel="author" title="Intel" href="http://www.intel.com/"> +<link rel="help" href="https://html.spec.whatwg.org/multipage/multipage/obsolete.html#the-marquee-element"> +<meta name="assert" content="Check if the marquee direction is from bottom to top"> +<p>Test passes if the text "Test Marquee" moves from bottom to top.</p> +<marquee direction="up">Test Marquee</marquee> diff --git a/testing/web-platform/tests/html/obsolete/requirements-for-implementations/the-marquee-element-0/marquee-events.html b/testing/web-platform/tests/html/obsolete/requirements-for-implementations/the-marquee-element-0/marquee-events.html new file mode 100644 index 000000000..0d20c5102 --- /dev/null +++ b/testing/web-platform/tests/html/obsolete/requirements-for-implementations/the-marquee-element-0/marquee-events.html @@ -0,0 +1,71 @@ +<!DOCTYPE html> +<meta charset="utf-8"> +<title>HTML Test: marquee-events</title> +<link rel="author" title="Intel" href="http://www.intel.com/"> +<link rel="help" href="https://html.spec.whatwg.org/multipage/multipage/obsolete.html#the-marquee-element"> +<script src="/resources/testharness.js"></script> +<script src="/resources/testharnessreport.js"></script> +<div id="log"></div> +<marquee id="test1" loop="2" width="1" behavior="alternate"> </marquee> +<marquee id="test2" loop="2" width="1"> </marquee> +<script> + var mq; + var t_start = async_test("marquee_events_start"); + var t_finish = async_test("marquee_events_finish"); + var t_bounce = async_test("marquee_events_bounce"); + var t_bounce2 = async_test("marquee_events_bounce2"); + var timeStamp = []; + var bounced = false; + + setup(function() { + mq = document.getElementById("test1"); + mq2 = document.getElementById("test2"); + }); + + mq.addEventListener("start", function(evt) { + t_start.step(function() { + timeStamp.push(evt.timeStamp); + assert_true(evt.isTrusted, "The onstart event is created by UA, it must be trusted."); + assert_equals(timeStamp.length, 1, "The onstart event should be fired firstly."); + assert_false(evt.bubbles, "The bubbles property of onstart event should be false."); + assert_false(evt.cancelable, "The cancelable property of onstart event should be false."); + assert_true(evt instanceof Event, "The onstart event must be the instance of Event interface."); + }); + t_start.done(); + }); + + mq.addEventListener("finish", function(evt) { + t_finish.step(function() { + timeStamp.push(evt.timeStamp); + assert_true(evt.isTrusted, "The onfinish event is created by UA, it must be trusted."); + assert_equals(timeStamp.length, 3, "The onfinish event should be fired lastly."); + assert_false(evt.bubbles, "The bubbles property of onfinish event should be false."); + assert_false(evt.cancelable, "The cancelable property of onfinish event should be false."); + assert_true(evt instanceof Event, "The onfinish event must be the instance of Event interface."); + }); + t_finish.done(); + }); + + mq.addEventListener("bounce", function(evt) { + t_bounce.step(function() { + timeStamp.push(evt.timeStamp); + assert_true(evt.isTrusted, "The onbounce event is created by UA, it must be trusted."); + assert_equals(timeStamp.length, 2, "The onbounce event should be fired secondly."); + assert_false(evt.bubbles, "The bubbles property of onbounce event should be false."); + assert_false(evt.cancelable, "The cancelable property of onbounce event should be false."); + assert_true(evt instanceof Event, "The onbounce event must be the instance of Event interface."); + }); + t_bounce.done(); + }); + + mq2.addEventListener("bounce", function(evt) { + bounced = true; + }); + + mq2.addEventListener("finish", function(evt) { + t_bounce2.step(function () { + assert_false(bounced, "The onbounce event should not be fired."); + }); + t_bounce2.done(); + }); +</script> diff --git a/testing/web-platform/tests/html/obsolete/requirements-for-implementations/the-marquee-element-0/marquee-loop.html b/testing/web-platform/tests/html/obsolete/requirements-for-implementations/the-marquee-element-0/marquee-loop.html new file mode 100644 index 000000000..d150a5473 --- /dev/null +++ b/testing/web-platform/tests/html/obsolete/requirements-for-implementations/the-marquee-element-0/marquee-loop.html @@ -0,0 +1,27 @@ +<!DOCTYPE html> +<meta charset="utf-8"> +<title>HTML Test: marquee-loop</title> +<link rel="author" title="Intel" href="http://www.intel.com/"> +<link rel="help" href="https://html.spec.whatwg.org/multipage/multipage/obsolete.html#the-marquee-element"> +<script src="/resources/testharness.js"></script> +<script src="/resources/testharnessreport.js"></script> +<div id="log"></div> +<marquee id="test1" loop="a">Test1</marquee> +<marquee id="test2" loop="-2">Test2</marquee> +<marquee id="test3" loop="2">Test3</marquee> +<script> + test(function() { + var mq = document.getElementById("test1"); + assert_equals(mq.loop, -1, "The value of loop should be -1."); + }, "marquee_loop_string"); + + test(function() { + var mq = document.getElementById("test2"); + assert_equals(mq.loop, -1, "The value of loop should be -1."); + }, "marquee_loop_less_than_1"); + + test(function() { + var mq = document.getElementById("test3"); + assert_equals(mq.loop, 2, "The value of loop should be 2."); + }, "marquee_loop_normal"); +</script> diff --git a/testing/web-platform/tests/html/obsolete/requirements-for-implementations/the-marquee-element-0/marquee-scrollamount-effect-manual.html b/testing/web-platform/tests/html/obsolete/requirements-for-implementations/the-marquee-element-0/marquee-scrollamount-effect-manual.html new file mode 100644 index 000000000..ad7ff0f3b --- /dev/null +++ b/testing/web-platform/tests/html/obsolete/requirements-for-implementations/the-marquee-element-0/marquee-scrollamount-effect-manual.html @@ -0,0 +1,9 @@ +<!DOCTYPE html> +<meta charset="utf-8"> +<title>HTML Test: marquee-scrollamount-effect</title> +<link rel="author" title="Intel" href="http://www.intel.com/"> +<link rel="help" href="https://html.spec.whatwg.org/multipage/multipage/obsolete.html#the-marquee-element"> +<meta name="assert" content="Check the effect of scrollamount attribute"> +<p>Test passes if the text "Test2" moves faster than the text "Test1".</p> +<marquee id="test1">Test1</marquee> +<marquee scrollamount="10" id="test2">Test2</marquee> diff --git a/testing/web-platform/tests/html/obsolete/requirements-for-implementations/the-marquee-element-0/marquee-scrollamount.html b/testing/web-platform/tests/html/obsolete/requirements-for-implementations/the-marquee-element-0/marquee-scrollamount.html new file mode 100644 index 000000000..808361a99 --- /dev/null +++ b/testing/web-platform/tests/html/obsolete/requirements-for-implementations/the-marquee-element-0/marquee-scrollamount.html @@ -0,0 +1,27 @@ +<!DOCTYPE html> +<meta charset="utf-8"> +<title>HTML Test: marquee-scrollamount</title> +<link rel="author" title="Intel" href="http://www.intel.com/"> +<link rel="help" href="https://html.spec.whatwg.org/multipage/multipage/obsolete.html#the-marquee-element"> +<script src="/resources/testharness.js"></script> +<script src="/resources/testharnessreport.js"></script> +<div id="log"></div> +<marquee id="test1" scrollamount="aa">Test1</marquee> +<marquee id="test2" scrollamount="-1">Test2</marquee> +<marquee id="test3" scrollamount="10">Test3</marquee> +<script> + test(function() { + var mq = document.getElementById("test1"); + assert_equals(mq.scrollAmount, 6, "The value of scrollamount should be 6."); + }, "The scrollamount is a string"); + + test(function() { + var mq = document.getElementById("test2"); + assert_equals(mq.scrollAmount, 6, "The value of scrollamount should be 6."); + }, "The scrollamount is a negative"); + + test(function() { + var mq = document.getElementById("test3"); + assert_equals(mq.scrollAmount, 10, "The value of scrollamount should be 10."); + }, "The scrollamount is a normal value"); +</script> diff --git a/testing/web-platform/tests/html/obsolete/requirements-for-implementations/the-marquee-element-0/marquee-scrolldelay.html b/testing/web-platform/tests/html/obsolete/requirements-for-implementations/the-marquee-element-0/marquee-scrolldelay.html new file mode 100644 index 000000000..9bc769fec --- /dev/null +++ b/testing/web-platform/tests/html/obsolete/requirements-for-implementations/the-marquee-element-0/marquee-scrolldelay.html @@ -0,0 +1,33 @@ +<!DOCTYPE html> +<meta charset="utf-8"> +<title>HTML Test: marquee-scrolldelay</title> +<link rel="author" title="Intel" href="http://www.intel.com/"> +<link rel="help" href="https://html.spec.whatwg.org/multipage/multipage/obsolete.html#the-marquee-element"> +<script src="/resources/testharness.js"></script> +<script src="/resources/testharnessreport.js"></script> +<div id="log"></div> +<marquee id="test1" scrolldelay="aa">Test1</marquee> +<marquee id="test2" scrolldelay="-1">Test2</marquee> +<marquee id="test3" scrolldelay="1">Test3</marquee> +<marquee id="test4" scrolldelay="100">Test4</marquee> +<script> + test(function() { + var mq = document.getElementById("test1"); + assert_equals(mq.scrollDelay, 85, "The delay time should be 85ms."); + }, "The scrolldelay attribute is a string"); + + test(function() { + var mq = document.getElementById("test2"); + assert_equals(mq.scrollDelay, 85, "The delay time should be 85ms."); + }, "The scrolldelay attribute is a negative"); + + test(function() { + var mq = document.getElementById("test3"); + assert_equals(mq.scrollDelay, 60, "The delay time should be 60ms."); + }, "The scrolldelay attribute is less than 60"); + + test(function() { + var mq = document.getElementById("test4"); + assert_equals(mq.scrollDelay, 100, "The delay time should be 100ms."); + }, "The scrolldelay attribute is greater than 60"); +</script> diff --git a/testing/web-platform/tests/html/obsolete/requirements-for-implementations/the-marquee-element-0/marquee-start.html b/testing/web-platform/tests/html/obsolete/requirements-for-implementations/the-marquee-element-0/marquee-start.html new file mode 100644 index 000000000..51b4289b2 --- /dev/null +++ b/testing/web-platform/tests/html/obsolete/requirements-for-implementations/the-marquee-element-0/marquee-start.html @@ -0,0 +1,23 @@ +<!DOCTYPE html> +<meta charset="utf-8"> +<title>HTML Test: marquee-start</title> +<link rel="author" title="Intel" href="http://www.intel.com/"> +<link rel="help" href="https://html.spec.whatwg.org/multipage/multipage/obsolete.html#the-marquee-element"> +<meta name="flags" content="interact"> +<meta name="assert" content="Check the start operation of HTMLMarqueeElement interface"> +<h2>Steps:</h2> +<ol> + <li>Click the 'Start' button to start the marquee element.</li> +</ol> +<h2>Expected result:</h2> +<ul> + <li>The text "Test Marquee" start to move when the 'Start' button is clicked.</li> +</ul> +<input type="button" id="start" value="Start" /> +<marquee id="test">Test Marquee</marquee> +<script> + document.getElementById("test").stop(); + document.getElementById("start").addEventListener("click", function(evt) { + document.getElementById("test").start(); + }, false); +</script> diff --git a/testing/web-platform/tests/html/obsolete/requirements-for-implementations/the-marquee-element-0/marquee-stop.html b/testing/web-platform/tests/html/obsolete/requirements-for-implementations/the-marquee-element-0/marquee-stop.html new file mode 100644 index 000000000..57a4e73e4 --- /dev/null +++ b/testing/web-platform/tests/html/obsolete/requirements-for-implementations/the-marquee-element-0/marquee-stop.html @@ -0,0 +1,22 @@ +<!DOCTYPE html> +<meta charset="utf-8"> +<title>HTML Test: marquee-stop</title> +<link rel="author" title="Intel" href="http://www.intel.com/"> +<link rel="help" href="https://html.spec.whatwg.org/multipage/multipage/obsolete.html#the-marquee-element"> +<meta name="flags" content="interact"> +<meta name="assert" content="Check the stop operation of HTMLMarqueeElement interface"> +<h2>Steps:</h2> +<ol> + <li>Click the 'Start' button to start the marquee element.</li> +</ol> +<h2>Expected result:</h2> +<ul> + <li>The text "Test Marquee" stop moving when the 'Stop' button is clicked.</li> +</ul> +<input type="button" id="stop" value="Stop" /> +<marquee id="test">Test Marquee</marquee> +<script> + document.getElementById("stop").addEventListener("click", function(evt) { + document.getElementById("test").stop(); + }, false); +</script> |