From 5f8de423f190bbb79a62f804151bc24824fa32d8 Mon Sep 17 00:00:00 2001 From: "Matt A. Tobin" Date: Fri, 2 Feb 2018 04:16:08 -0500 Subject: Add m-esr52 at 52.6.0 --- .../web-platform/tests/innerText/getter-tests.js | 329 +++++++++++++++++++++ testing/web-platform/tests/innerText/getter.html | 59 ++++ .../web-platform/tests/innerText/setter-tests.js | 27 ++ testing/web-platform/tests/innerText/setter.html | 32 ++ 4 files changed, 447 insertions(+) create mode 100644 testing/web-platform/tests/innerText/getter-tests.js create mode 100644 testing/web-platform/tests/innerText/getter.html create mode 100644 testing/web-platform/tests/innerText/setter-tests.js create mode 100644 testing/web-platform/tests/innerText/setter.html (limited to 'testing/web-platform/tests/innerText') diff --git a/testing/web-platform/tests/innerText/getter-tests.js b/testing/web-platform/tests/innerText/getter-tests.js new file mode 100644 index 000000000..d4511410b --- /dev/null +++ b/testing/web-platform/tests/innerText/getter-tests.js @@ -0,0 +1,329 @@ +testText("
abc", "abc", "Simplest possible test"); + +/**** white-space:normal ****/ + +testText("
abc", "abc", "Leading whitespace removed"); +testText("
abc ", "abc", "Trailing whitespace removed"); +testText("
abc def", "abc def", "Internal whitespace compressed"); +testText("
abc\ndef", "abc def", "\\n converted to space"); +testText("
abc\rdef", "abc def", "\\r converted to space"); +testText("
abc\tdef", "abc def", "\\t converted to space"); +testText("
abc
def", "abc\ndef", "Trailing whitespace before hard line break removed"); + +/****
 ****/
+
+testText("
 abc", " abc", "Leading whitespace preserved");
+testText("
abc ", "abc ", "Trailing whitespace preserved");
+testText("
abc  def", "abc  def", "Internal whitespace preserved");
+testText("
abc\ndef", "abc\ndef", "\\n preserved");
+testText("
abc\rdef", "abc\ndef", "\\r converted to newline");
+testText("
abc\tdef", "abc\tdef", "\\t preserved");
+
+/**** 
****/ + +testText("
abc", " abc", "Leading whitespace preserved"); +testText("
abc ", "abc ", "Trailing whitespace preserved"); +testText("
abc def", "abc def", "Internal whitespace preserved"); +testText("
abc\ndef", "abc\ndef", "\\n preserved"); +testText("
abc\rdef", "abc\ndef", "\\r converted to newline"); +testText("
abc\tdef", "abc\tdef", "\\t preserved"); + +/**** ****/ + +testText(" abc", " abc", "Leading whitespace preserved"); +testText("abc ", "abc ", "Trailing whitespace preserved"); +testText("abc def", "abc def", "Internal whitespace preserved"); +testText("abc\ndef", "abc\ndef", "\\n preserved"); +testText("abc\rdef", "abc\ndef", "\\r converted to newline"); +testText("abc\tdef", "abc\tdef", "\\t preserved"); + +/****
****/ + +testText("
abc", "abc", "Leading whitespace removed"); +testText("
abc ", "abc", "Trailing whitespace removed"); +testText("
abc def", "abc def", "Internal whitespace collapsed"); +testText("
abc\ndef", "abc\ndef", "\\n preserved"); +testText("
abc\rdef", "abc\ndef", "\\r converted to newline"); +testText("
abc\tdef", "abc def", "\\t converted to space"); + +/**** Collapsing whitespace across element boundaries ****/ + +testText("
abc def", "abc def", "Whitespace collapses across element boundaries"); +testText("
abc def", "abc def", "Whitespace collapses across element boundaries"); +testText("
abc def", "abc def", "Whitespace collapses across element boundaries"); + +/**** Soft line breaks ****/ + +testText("
abc def", "abc def", "Soft line breaks ignored"); + +/**** first-line/first-letter ****/ + +testText("
abc def", "ABC def", "::first-line styles applied"); +testText("
abc def", "Abc def", "::first-letter styles applied"); +testText("
abc def", "abc def", "::first-letter float ignored"); + +/****   ****/ + +testText("
 ", "\xA0", "  preserved"); + +/**** display:none ****/ + +testText("
abc", "abc", "display:none container"); +testText("
abc def", "abc def", "No whitespace compression in display:none container"); +testText("
abc def ", " abc def ", "No removal of leading/trailing whitespace in display:none container"); +testText("
123abc", "123", "display:none child not rendered"); +testText("
abc", "abc", "display:none container with non-display-none target child"); +testTextInSVG("
abc", "", "non-display-none child of svg"); +testTextInSVG("