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 --- testing/web-platform/tests/html-imports/OWNERS | 1 + .../document/document-method-changes.html | 22 +++++++ .../html-imports/document/resources/body-only.html | 4 ++ .../document/resources/test-in-import.html | 13 ++++ .../fetching/already-in-import-map.html | 26 ++++++++ .../html-imports/fetching/loading-attempt.html | 76 ++++++++++++++++++++++ .../html-imports/fetching/resources/async.html | 2 + .../html-imports/fetching/resources/dynamic.html | 2 + .../html-imports/fetching/resources/hello.html | 2 + .../fetching/resources/parent-of-hello.html | 2 + .../html-link-element/import-attribute.html | 43 ++++++++++++ .../html-link-element/resources/body-only-0.html | 4 ++ .../html-link-element/resources/body-only-1.html | 4 ++ .../html-link-element/resources/body-only-2.html | 4 ++ .../html-link-element/resources/hello.css | 3 + 15 files changed, 208 insertions(+) create mode 100644 testing/web-platform/tests/html-imports/OWNERS create mode 100644 testing/web-platform/tests/html-imports/document/document-method-changes.html create mode 100644 testing/web-platform/tests/html-imports/document/resources/body-only.html create mode 100644 testing/web-platform/tests/html-imports/document/resources/test-in-import.html create mode 100644 testing/web-platform/tests/html-imports/fetching/already-in-import-map.html create mode 100644 testing/web-platform/tests/html-imports/fetching/loading-attempt.html create mode 100644 testing/web-platform/tests/html-imports/fetching/resources/async.html create mode 100644 testing/web-platform/tests/html-imports/fetching/resources/dynamic.html create mode 100644 testing/web-platform/tests/html-imports/fetching/resources/hello.html create mode 100644 testing/web-platform/tests/html-imports/fetching/resources/parent-of-hello.html create mode 100644 testing/web-platform/tests/html-imports/html-link-element/import-attribute.html create mode 100644 testing/web-platform/tests/html-imports/html-link-element/resources/body-only-0.html create mode 100644 testing/web-platform/tests/html-imports/html-link-element/resources/body-only-1.html create mode 100644 testing/web-platform/tests/html-imports/html-link-element/resources/body-only-2.html create mode 100644 testing/web-platform/tests/html-imports/html-link-element/resources/hello.css (limited to 'testing/web-platform/tests/html-imports') diff --git a/testing/web-platform/tests/html-imports/OWNERS b/testing/web-platform/tests/html-imports/OWNERS new file mode 100644 index 000000000..edda46755 --- /dev/null +++ b/testing/web-platform/tests/html-imports/OWNERS @@ -0,0 +1 @@ +@omo diff --git a/testing/web-platform/tests/html-imports/document/document-method-changes.html b/testing/web-platform/tests/html-imports/document/document-method-changes.html new file mode 100644 index 000000000..c71012ff5 --- /dev/null +++ b/testing/web-platform/tests/html-imports/document/document-method-changes.html @@ -0,0 +1,22 @@ + + + +The import attribute + + + + + + + + +
+ + + diff --git a/testing/web-platform/tests/html-imports/document/resources/body-only.html b/testing/web-platform/tests/html-imports/document/resources/body-only.html new file mode 100644 index 000000000..0ed2a55bb --- /dev/null +++ b/testing/web-platform/tests/html-imports/document/resources/body-only.html @@ -0,0 +1,4 @@ + + +Hello + diff --git a/testing/web-platform/tests/html-imports/document/resources/test-in-import.html b/testing/web-platform/tests/html-imports/document/resources/test-in-import.html new file mode 100644 index 000000000..fc25e85a4 --- /dev/null +++ b/testing/web-platform/tests/html-imports/document/resources/test-in-import.html @@ -0,0 +1,13 @@ + + + + + + diff --git a/testing/web-platform/tests/html-imports/fetching/already-in-import-map.html b/testing/web-platform/tests/html-imports/fetching/already-in-import-map.html new file mode 100644 index 000000000..a5b006500 --- /dev/null +++ b/testing/web-platform/tests/html-imports/fetching/already-in-import-map.html @@ -0,0 +1,26 @@ + + + +Fetching import + + + + + + + + + + +
+ + + diff --git a/testing/web-platform/tests/html-imports/fetching/loading-attempt.html b/testing/web-platform/tests/html-imports/fetching/loading-attempt.html new file mode 100644 index 000000000..7c1b442b1 --- /dev/null +++ b/testing/web-platform/tests/html-imports/fetching/loading-attempt.html @@ -0,0 +1,76 @@ + + + +Fetching import + + + + + + + + + + + + + +
+ + diff --git a/testing/web-platform/tests/html-imports/fetching/resources/async.html b/testing/web-platform/tests/html-imports/fetching/resources/async.html new file mode 100644 index 000000000..18de08618 --- /dev/null +++ b/testing/web-platform/tests/html-imports/fetching/resources/async.html @@ -0,0 +1,2 @@ + +Async diff --git a/testing/web-platform/tests/html-imports/fetching/resources/dynamic.html b/testing/web-platform/tests/html-imports/fetching/resources/dynamic.html new file mode 100644 index 000000000..bf17a13ba --- /dev/null +++ b/testing/web-platform/tests/html-imports/fetching/resources/dynamic.html @@ -0,0 +1,2 @@ + +Dyamic diff --git a/testing/web-platform/tests/html-imports/fetching/resources/hello.html b/testing/web-platform/tests/html-imports/fetching/resources/hello.html new file mode 100644 index 000000000..949f6c66a --- /dev/null +++ b/testing/web-platform/tests/html-imports/fetching/resources/hello.html @@ -0,0 +1,2 @@ + +Hello diff --git a/testing/web-platform/tests/html-imports/fetching/resources/parent-of-hello.html b/testing/web-platform/tests/html-imports/fetching/resources/parent-of-hello.html new file mode 100644 index 000000000..195e37add --- /dev/null +++ b/testing/web-platform/tests/html-imports/fetching/resources/parent-of-hello.html @@ -0,0 +1,2 @@ + + diff --git a/testing/web-platform/tests/html-imports/html-link-element/import-attribute.html b/testing/web-platform/tests/html-imports/html-link-element/import-attribute.html new file mode 100644 index 000000000..41b63751f --- /dev/null +++ b/testing/web-platform/tests/html-imports/html-link-element/import-attribute.html @@ -0,0 +1,43 @@ + + + +The import attribute + + + + + + + + + + + +
+ + + + diff --git a/testing/web-platform/tests/html-imports/html-link-element/resources/body-only-0.html b/testing/web-platform/tests/html-imports/html-link-element/resources/body-only-0.html new file mode 100644 index 000000000..cac33c7a3 --- /dev/null +++ b/testing/web-platform/tests/html-imports/html-link-element/resources/body-only-0.html @@ -0,0 +1,4 @@ + + +Hello + diff --git a/testing/web-platform/tests/html-imports/html-link-element/resources/body-only-1.html b/testing/web-platform/tests/html-imports/html-link-element/resources/body-only-1.html new file mode 100644 index 000000000..c0eedf4e4 --- /dev/null +++ b/testing/web-platform/tests/html-imports/html-link-element/resources/body-only-1.html @@ -0,0 +1,4 @@ + + +Hello + diff --git a/testing/web-platform/tests/html-imports/html-link-element/resources/body-only-2.html b/testing/web-platform/tests/html-imports/html-link-element/resources/body-only-2.html new file mode 100644 index 000000000..9a6a1e438 --- /dev/null +++ b/testing/web-platform/tests/html-imports/html-link-element/resources/body-only-2.html @@ -0,0 +1,4 @@ + + +Hello + diff --git a/testing/web-platform/tests/html-imports/html-link-element/resources/hello.css b/testing/web-platform/tests/html-imports/html-link-element/resources/hello.css new file mode 100644 index 000000000..9054080ff --- /dev/null +++ b/testing/web-platform/tests/html-imports/html-link-element/resources/hello.css @@ -0,0 +1,3 @@ +h1 { + color: red; +} \ No newline at end of file -- cgit v1.2.3