summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/input
diff options
context:
space:
mode:
authorMoonchild <moonchild@palemoon.org>2021-02-04 19:41:06 +0000
committerMoonchild <moonchild@palemoon.org>2021-02-04 19:41:06 +0000
commit914368530ba622ff0117cd34bec058fb0d862155 (patch)
tree6c29459914d1b01ed27fad039d0b982d1dbc32c3 /testing/web-platform/tests/html/input
parentc5ad76a2875ca5c06c5bbff7b2f2e3ff7b3599c3 (diff)
downloadUXP-914368530ba622ff0117cd34bec058fb0d862155.tar
UXP-914368530ba622ff0117cd34bec058fb0d862155.tar.gz
UXP-914368530ba622ff0117cd34bec058fb0d862155.tar.lz
UXP-914368530ba622ff0117cd34bec058fb0d862155.tar.xz
UXP-914368530ba622ff0117cd34bec058fb0d862155.zip
Issue #439 - Remove web-platform tests from the tree.
This removes a total of 23,936 files we would never use nor have the capacity to properly maintain or keep up-to-date.
Diffstat (limited to 'testing/web-platform/tests/html/input')
-rw-r--r--testing/web-platform/tests/html/input/the-placeholder-attribute/multiline-cr.html1
-rw-r--r--testing/web-platform/tests/html/input/the-placeholder-attribute/multiline-crlf.html19
-rw-r--r--testing/web-platform/tests/html/input/the-placeholder-attribute/multiline-ref.html5
-rw-r--r--testing/web-platform/tests/html/input/the-placeholder-attribute/multiline.html19
4 files changed, 0 insertions, 44 deletions
diff --git a/testing/web-platform/tests/html/input/the-placeholder-attribute/multiline-cr.html b/testing/web-platform/tests/html/input/the-placeholder-attribute/multiline-cr.html
deleted file mode 100644
index f3150f25d..000000000
--- a/testing/web-platform/tests/html/input/the-placeholder-attribute/multiline-cr.html
+++ /dev/null
@@ -1 +0,0 @@
-<!doctype html> <html class="reftest-wait"> <meta charset="utf-8"> <title>input multiline placeholder (CRLF)</title> <link rel="help" href="https://html.spec.whatwg.org/multipage/input.html#the-placeholder-attribute"> <meta name="assert" content="input element's placeholder strips newlines (CRLF)"> <link rel="match" href="/html/input/the-placeholder-attribute/multiline-ref.html"> <input placeholder="this is a multiline placeholder"> <input placeholder="this is&#xd;a multiline&#xd;&#xd;placeholder"> <input id="dynamic"> <script> document.querySelector("#dynamic") .setAttribute("placeholder", "this is\ra multiline\r\rplaceholder"); document.documentElement.classList.remove("reftest-wait"); </script> </html> \ No newline at end of file
diff --git a/testing/web-platform/tests/html/input/the-placeholder-attribute/multiline-crlf.html b/testing/web-platform/tests/html/input/the-placeholder-attribute/multiline-crlf.html
deleted file mode 100644
index dd581629d..000000000
--- a/testing/web-platform/tests/html/input/the-placeholder-attribute/multiline-crlf.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<!doctype html>
-<html class="reftest-wait">
-<meta charset="utf-8">
-<title>input multiline placeholder (CRLF)</title>
-<link rel="help" href="https://html.spec.whatwg.org/multipage/input.html#the-placeholder-attribute">
-<meta name="assert" content="input element's placeholder strips newlines (CRLF)">
-<link rel="match" href="/html/input/the-placeholder-attribute/multiline-ref.html">
-<input placeholder="this is
-a multiline
-
-placeholder">
-<input placeholder="this is&#xd;&#xa;a multiline&#xd;&#xa;&#xd;&#xa;placeholder">
-<input id="dynamic">
-<script>
- document.querySelector("#dynamic")
- .setAttribute("placeholder", "this is\r\na multiline\r\n\r\nplaceholder");
- document.documentElement.classList.remove("reftest-wait");
-</script>
-</html>
diff --git a/testing/web-platform/tests/html/input/the-placeholder-attribute/multiline-ref.html b/testing/web-platform/tests/html/input/the-placeholder-attribute/multiline-ref.html
deleted file mode 100644
index 2812f86e1..000000000
--- a/testing/web-platform/tests/html/input/the-placeholder-attribute/multiline-ref.html
+++ /dev/null
@@ -1,5 +0,0 @@
-<!doctype html>
-<meta charset=utf-8>
-<input placeholder="this isa multilineplaceholder">
-<input placeholder="this isa multilineplaceholder">
-<input placeholder="this isa multilineplaceholder">
diff --git a/testing/web-platform/tests/html/input/the-placeholder-attribute/multiline.html b/testing/web-platform/tests/html/input/the-placeholder-attribute/multiline.html
deleted file mode 100644
index 2d7102bd4..000000000
--- a/testing/web-platform/tests/html/input/the-placeholder-attribute/multiline.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<!doctype html>
-<html class="reftest-wait">
-<meta charset="utf-8">
-<title>input multiline placeholder</title>
-<link rel="help" href="https://html.spec.whatwg.org/multipage/input.html#the-placeholder-attribute">
-<meta name="assert" content="input element's placeholder strips newlines">
-<link rel="match" href="/html/input/the-placeholder-attribute/multiline-ref.html">
-<input placeholder="this is
-a multiline
-
-placeholder">
-<input placeholder="this is&#xa;a multiline&#xa;&#xa;placeholder">
-<input id="dynamic">
-<script>
- document.querySelector("#dynamic")
- .setAttribute("placeholder", "this is\na multiline\n\nplaceholder");
- document.documentElement.classList.remove("reftest-wait");
-</script>
-</html>