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 --- .../template-is-a-foster-parent-element.html | 63 ++++++ .../template-is-not-a-foster-parent-element.html | 70 +++++++ .../generating-of-implied-end-tags.html | 136 +++++++++++++ .../ignore-body-token.html | 132 ++++++++++++ .../ignore-frameset-token.html | 125 ++++++++++++ .../ignore-head-token.html | 129 ++++++++++++ .../ignore-html-token.html | 158 +++++++++++++++ .../start-tag-body.html | 97 +++++++++ .../start-tag-html.html | 38 ++++ .../template-end-tag-without-start-one.html | 102 ++++++++++ .../end-tag-frameset.html | 26 +++ .../generating-of-implied-end-tags.html | 137 +++++++++++++ .../template-end-tag-without-start-one.html | 101 ++++++++++ .../end-tag-table.html | 42 ++++ .../template-child-nodes.html | 116 +++++++++++ ...learing-stack-back-to-a-table-body-context.html | 182 +++++++++++++++++ .../clearing-stack-back-to-a-table-context.html | 84 ++++++++ ...clearing-stack-back-to-a-table-row-context.html | 71 +++++++ .../template-owner-document.html | 221 +++++++++++++++++++++ 19 files changed, 2030 insertions(+) create mode 100644 testing/web-platform/tests/html/syntax/parsing/template/additions-to-foster-parenting/template-is-a-foster-parent-element.html create mode 100644 testing/web-platform/tests/html/syntax/parsing/template/additions-to-foster-parenting/template-is-not-a-foster-parent-element.html create mode 100644 testing/web-platform/tests/html/syntax/parsing/template/additions-to-the-in-body-insertion-mode/generating-of-implied-end-tags.html create mode 100644 testing/web-platform/tests/html/syntax/parsing/template/additions-to-the-in-body-insertion-mode/ignore-body-token.html create mode 100644 testing/web-platform/tests/html/syntax/parsing/template/additions-to-the-in-body-insertion-mode/ignore-frameset-token.html create mode 100644 testing/web-platform/tests/html/syntax/parsing/template/additions-to-the-in-body-insertion-mode/ignore-head-token.html create mode 100644 testing/web-platform/tests/html/syntax/parsing/template/additions-to-the-in-body-insertion-mode/ignore-html-token.html create mode 100644 testing/web-platform/tests/html/syntax/parsing/template/additions-to-the-in-body-insertion-mode/start-tag-body.html create mode 100644 testing/web-platform/tests/html/syntax/parsing/template/additions-to-the-in-body-insertion-mode/start-tag-html.html create mode 100644 testing/web-platform/tests/html/syntax/parsing/template/additions-to-the-in-body-insertion-mode/template-end-tag-without-start-one.html create mode 100644 testing/web-platform/tests/html/syntax/parsing/template/additions-to-the-in-frameset-insertion-mode/end-tag-frameset.html create mode 100644 testing/web-platform/tests/html/syntax/parsing/template/additions-to-the-in-head-insertion-mode/generating-of-implied-end-tags.html create mode 100644 testing/web-platform/tests/html/syntax/parsing/template/additions-to-the-in-head-insertion-mode/template-end-tag-without-start-one.html create mode 100644 testing/web-platform/tests/html/syntax/parsing/template/additions-to-the-in-table-insertion-mode/end-tag-table.html create mode 100644 testing/web-platform/tests/html/syntax/parsing/template/appending-to-a-template/template-child-nodes.html create mode 100644 testing/web-platform/tests/html/syntax/parsing/template/clearing-the-stack-back-to-a-given-context/clearing-stack-back-to-a-table-body-context.html create mode 100644 testing/web-platform/tests/html/syntax/parsing/template/clearing-the-stack-back-to-a-given-context/clearing-stack-back-to-a-table-context.html create mode 100644 testing/web-platform/tests/html/syntax/parsing/template/clearing-the-stack-back-to-a-given-context/clearing-stack-back-to-a-table-row-context.html create mode 100644 testing/web-platform/tests/html/syntax/parsing/template/creating-an-element-for-the-token/template-owner-document.html (limited to 'testing/web-platform/tests/html/syntax/parsing/template') diff --git a/testing/web-platform/tests/html/syntax/parsing/template/additions-to-foster-parenting/template-is-a-foster-parent-element.html b/testing/web-platform/tests/html/syntax/parsing/template/additions-to-foster-parenting/template-is-a-foster-parent-element.html new file mode 100644 index 000000000..6f6e7a725 --- /dev/null +++ b/testing/web-platform/tests/html/syntax/parsing/template/additions-to-foster-parenting/template-is-a-foster-parent-element.html @@ -0,0 +1,63 @@ + + + +HTML Templates: Template is a foster parent element + + + + + + + + +
+ + + diff --git a/testing/web-platform/tests/html/syntax/parsing/template/additions-to-foster-parenting/template-is-not-a-foster-parent-element.html b/testing/web-platform/tests/html/syntax/parsing/template/additions-to-foster-parenting/template-is-not-a-foster-parent-element.html new file mode 100644 index 000000000..677dfaf3e --- /dev/null +++ b/testing/web-platform/tests/html/syntax/parsing/template/additions-to-foster-parenting/template-is-not-a-foster-parent-element.html @@ -0,0 +1,70 @@ + + + +HTML Templates: Template is not a foster parent element + + + + + + + + +
+ + + diff --git a/testing/web-platform/tests/html/syntax/parsing/template/additions-to-the-in-body-insertion-mode/generating-of-implied-end-tags.html b/testing/web-platform/tests/html/syntax/parsing/template/additions-to-the-in-body-insertion-mode/generating-of-implied-end-tags.html new file mode 100644 index 000000000..6edce84ef --- /dev/null +++ b/testing/web-platform/tests/html/syntax/parsing/template/additions-to-the-in-body-insertion-mode/generating-of-implied-end-tags.html @@ -0,0 +1,136 @@ + + + +HTML Templates: 'In body' insertion mode: when template end tag is met, implied end tags should be generated + + + + + + + + + +
+ + + diff --git a/testing/web-platform/tests/html/syntax/parsing/template/additions-to-the-in-body-insertion-mode/ignore-body-token.html b/testing/web-platform/tests/html/syntax/parsing/template/additions-to-the-in-body-insertion-mode/ignore-body-token.html new file mode 100644 index 000000000..4549f5fec --- /dev/null +++ b/testing/web-platform/tests/html/syntax/parsing/template/additions-to-the-in-body-insertion-mode/ignore-body-token.html @@ -0,0 +1,132 @@ + + + +HTML Templates: In body insertion mode: parser should ignore BODY token + + + + + + + + + +
+ + + diff --git a/testing/web-platform/tests/html/syntax/parsing/template/additions-to-the-in-body-insertion-mode/ignore-frameset-token.html b/testing/web-platform/tests/html/syntax/parsing/template/additions-to-the-in-body-insertion-mode/ignore-frameset-token.html new file mode 100644 index 000000000..121115075 --- /dev/null +++ b/testing/web-platform/tests/html/syntax/parsing/template/additions-to-the-in-body-insertion-mode/ignore-frameset-token.html @@ -0,0 +1,125 @@ + + + +HTML Templates: In body insertion mode: parser should ignore FRAMESET token + + + + + + + + + +
+ + + diff --git a/testing/web-platform/tests/html/syntax/parsing/template/additions-to-the-in-body-insertion-mode/ignore-head-token.html b/testing/web-platform/tests/html/syntax/parsing/template/additions-to-the-in-body-insertion-mode/ignore-head-token.html new file mode 100644 index 000000000..9b14df917 --- /dev/null +++ b/testing/web-platform/tests/html/syntax/parsing/template/additions-to-the-in-body-insertion-mode/ignore-head-token.html @@ -0,0 +1,129 @@ + + + +HTML Templates: In body insertion mode: parser should ignore HEAD token + + + + + + + + + +
+ + + diff --git a/testing/web-platform/tests/html/syntax/parsing/template/additions-to-the-in-body-insertion-mode/ignore-html-token.html b/testing/web-platform/tests/html/syntax/parsing/template/additions-to-the-in-body-insertion-mode/ignore-html-token.html new file mode 100644 index 000000000..5c53be842 --- /dev/null +++ b/testing/web-platform/tests/html/syntax/parsing/template/additions-to-the-in-body-insertion-mode/ignore-html-token.html @@ -0,0 +1,158 @@ + + + +HTML Templates: In body insertion mode: parser should ignore HTML token + + + + + + + + + +
+ + + diff --git a/testing/web-platform/tests/html/syntax/parsing/template/additions-to-the-in-body-insertion-mode/start-tag-body.html b/testing/web-platform/tests/html/syntax/parsing/template/additions-to-the-in-body-insertion-mode/start-tag-body.html new file mode 100644 index 000000000..738c86106 --- /dev/null +++ b/testing/web-platform/tests/html/syntax/parsing/template/additions-to-the-in-body-insertion-mode/start-tag-body.html @@ -0,0 +1,97 @@ + + + +HTML Templates: In body insertion mode: Template contains a start tag whose tag name is body + + + + + + + + +
+ + + diff --git a/testing/web-platform/tests/html/syntax/parsing/template/additions-to-the-in-body-insertion-mode/start-tag-html.html b/testing/web-platform/tests/html/syntax/parsing/template/additions-to-the-in-body-insertion-mode/start-tag-html.html new file mode 100644 index 000000000..33c43cd50 --- /dev/null +++ b/testing/web-platform/tests/html/syntax/parsing/template/additions-to-the-in-body-insertion-mode/start-tag-html.html @@ -0,0 +1,38 @@ + + + +HTML Templates: In body insertion mode: A start tag whose tag name is html + + + + + + + + +
+ + + diff --git a/testing/web-platform/tests/html/syntax/parsing/template/additions-to-the-in-body-insertion-mode/template-end-tag-without-start-one.html b/testing/web-platform/tests/html/syntax/parsing/template/additions-to-the-in-body-insertion-mode/template-end-tag-without-start-one.html new file mode 100644 index 000000000..ca124ee79 --- /dev/null +++ b/testing/web-platform/tests/html/syntax/parsing/template/additions-to-the-in-body-insertion-mode/template-end-tag-without-start-one.html @@ -0,0 +1,102 @@ + + + +HTML Templates: 'In body' insertion mode: Template end tag without start one. Element should be ignored + + + + + + + + + +
+ + + diff --git a/testing/web-platform/tests/html/syntax/parsing/template/additions-to-the-in-frameset-insertion-mode/end-tag-frameset.html b/testing/web-platform/tests/html/syntax/parsing/template/additions-to-the-in-frameset-insertion-mode/end-tag-frameset.html new file mode 100644 index 000000000..f03f5a30b --- /dev/null +++ b/testing/web-platform/tests/html/syntax/parsing/template/additions-to-the-in-frameset-insertion-mode/end-tag-frameset.html @@ -0,0 +1,26 @@ + + + +HTML Templates: additions to 'in frameset' insertion mode + + + + + + + + +
+ + + diff --git a/testing/web-platform/tests/html/syntax/parsing/template/additions-to-the-in-head-insertion-mode/generating-of-implied-end-tags.html b/testing/web-platform/tests/html/syntax/parsing/template/additions-to-the-in-head-insertion-mode/generating-of-implied-end-tags.html new file mode 100644 index 000000000..2f7e6f63c --- /dev/null +++ b/testing/web-platform/tests/html/syntax/parsing/template/additions-to-the-in-head-insertion-mode/generating-of-implied-end-tags.html @@ -0,0 +1,137 @@ + + + +HTML Templates: When template end tag is met, implied end tags should be generated + + + + + + + + + +
+ + + diff --git a/testing/web-platform/tests/html/syntax/parsing/template/additions-to-the-in-head-insertion-mode/template-end-tag-without-start-one.html b/testing/web-platform/tests/html/syntax/parsing/template/additions-to-the-in-head-insertion-mode/template-end-tag-without-start-one.html new file mode 100644 index 000000000..ccb43341b --- /dev/null +++ b/testing/web-platform/tests/html/syntax/parsing/template/additions-to-the-in-head-insertion-mode/template-end-tag-without-start-one.html @@ -0,0 +1,101 @@ + + + +HTML Templates: Template end tag without start one. Element should be ignored + + + + + + + + + +
+ + + diff --git a/testing/web-platform/tests/html/syntax/parsing/template/additions-to-the-in-table-insertion-mode/end-tag-table.html b/testing/web-platform/tests/html/syntax/parsing/template/additions-to-the-in-table-insertion-mode/end-tag-table.html new file mode 100644 index 000000000..feb2eb108 --- /dev/null +++ b/testing/web-platform/tests/html/syntax/parsing/template/additions-to-the-in-table-insertion-mode/end-tag-table.html @@ -0,0 +1,42 @@ + + + +HTML Templates: 'In table' insertion mode: ignore TABLE end tag + + + + + + + + +
+ + + diff --git a/testing/web-platform/tests/html/syntax/parsing/template/appending-to-a-template/template-child-nodes.html b/testing/web-platform/tests/html/syntax/parsing/template/appending-to-a-template/template-child-nodes.html new file mode 100644 index 000000000..6292c3522 --- /dev/null +++ b/testing/web-platform/tests/html/syntax/parsing/template/appending-to-a-template/template-child-nodes.html @@ -0,0 +1,116 @@ + + + +HTML Templates: HTML parser appends child nodes only to the template contents node + + + + + + + + + +
+ + + diff --git a/testing/web-platform/tests/html/syntax/parsing/template/clearing-the-stack-back-to-a-given-context/clearing-stack-back-to-a-table-body-context.html b/testing/web-platform/tests/html/syntax/parsing/template/clearing-the-stack-back-to-a-given-context/clearing-stack-back-to-a-table-body-context.html new file mode 100644 index 000000000..a150faa1d --- /dev/null +++ b/testing/web-platform/tests/html/syntax/parsing/template/clearing-the-stack-back-to-a-given-context/clearing-stack-back-to-a-table-body-context.html @@ -0,0 +1,182 @@ + + + +HTML Templates: Clearing stack back to a table body context + + + + + + + + +
+ + + diff --git a/testing/web-platform/tests/html/syntax/parsing/template/clearing-the-stack-back-to-a-given-context/clearing-stack-back-to-a-table-context.html b/testing/web-platform/tests/html/syntax/parsing/template/clearing-the-stack-back-to-a-given-context/clearing-stack-back-to-a-table-context.html new file mode 100644 index 000000000..23a4e7b0b --- /dev/null +++ b/testing/web-platform/tests/html/syntax/parsing/template/clearing-the-stack-back-to-a-given-context/clearing-stack-back-to-a-table-context.html @@ -0,0 +1,84 @@ + + + +HTML Templates: Clearing stack back to a table context + + + + + + + + +
+ + + diff --git a/testing/web-platform/tests/html/syntax/parsing/template/clearing-the-stack-back-to-a-given-context/clearing-stack-back-to-a-table-row-context.html b/testing/web-platform/tests/html/syntax/parsing/template/clearing-the-stack-back-to-a-given-context/clearing-stack-back-to-a-table-row-context.html new file mode 100644 index 000000000..250391612 --- /dev/null +++ b/testing/web-platform/tests/html/syntax/parsing/template/clearing-the-stack-back-to-a-given-context/clearing-stack-back-to-a-table-row-context.html @@ -0,0 +1,71 @@ + + + +HTML Templates: Clearing stack back to a table row context + + + + + + + + +
+ + + diff --git a/testing/web-platform/tests/html/syntax/parsing/template/creating-an-element-for-the-token/template-owner-document.html b/testing/web-platform/tests/html/syntax/parsing/template/creating-an-element-for-the-token/template-owner-document.html new file mode 100644 index 000000000..e1f999511 --- /dev/null +++ b/testing/web-platform/tests/html/syntax/parsing/template/creating-an-element-for-the-token/template-owner-document.html @@ -0,0 +1,221 @@ + + + +HTML Templates: ownerDocument property of the element in template + + + + + + + + + +
+ + + -- cgit v1.2.3