summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/custom-elements/v0/resources
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/custom-elements/v0/resources')
-rw-r--r--testing/web-platform/tests/custom-elements/v0/resources/blank.html9
-rw-r--r--testing/web-platform/tests/custom-elements/v0/resources/import-master-async.html10
-rw-r--r--testing/web-platform/tests/custom-elements/v0/resources/import-master.html10
-rw-r--r--testing/web-platform/tests/custom-elements/v0/resources/import.html9
-rw-r--r--testing/web-platform/tests/custom-elements/v0/resources/register-and-create-custom-element.html19
-rw-r--r--testing/web-platform/tests/custom-elements/v0/resources/x-element.html10
-rw-r--r--testing/web-platform/tests/custom-elements/v0/resources/x-mathml-element.html12
-rw-r--r--testing/web-platform/tests/custom-elements/v0/resources/x-svg-element.html12
8 files changed, 0 insertions, 91 deletions
diff --git a/testing/web-platform/tests/custom-elements/v0/resources/blank.html b/testing/web-platform/tests/custom-elements/v0/resources/blank.html
deleted file mode 100644
index 2e5697ba1..000000000
--- a/testing/web-platform/tests/custom-elements/v0/resources/blank.html
+++ /dev/null
@@ -1,9 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
- <title>Blank document</title>
- <link rel="author" title="Aleksei Yu. Semenov" href="mailto:a.semenov@unipro.ru">
-</head>
-<body>
-</body>
-</html>
diff --git a/testing/web-platform/tests/custom-elements/v0/resources/import-master-async.html b/testing/web-platform/tests/custom-elements/v0/resources/import-master-async.html
deleted file mode 100644
index 0ecaafb29..000000000
--- a/testing/web-platform/tests/custom-elements/v0/resources/import-master-async.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<!DOCTYPE html>
-<html>
- <head>
- <title>Import Master Document (asynchronous)</title>
- <link rel="import" href="import.html" async>
- </head>
- <body>
- <p>Master document body</p>
- </body>
-</html>
diff --git a/testing/web-platform/tests/custom-elements/v0/resources/import-master.html b/testing/web-platform/tests/custom-elements/v0/resources/import-master.html
deleted file mode 100644
index d91bcb9cd..000000000
--- a/testing/web-platform/tests/custom-elements/v0/resources/import-master.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<!DOCTYPE html>
-<html>
- <head>
- <title>Import Master Document</title>
- <link rel="import" href="import.html">
- </head>
- <body>
- <p>Master document body</p>
- </body>
-</html>
diff --git a/testing/web-platform/tests/custom-elements/v0/resources/import.html b/testing/web-platform/tests/custom-elements/v0/resources/import.html
deleted file mode 100644
index dddc46701..000000000
--- a/testing/web-platform/tests/custom-elements/v0/resources/import.html
+++ /dev/null
@@ -1,9 +0,0 @@
-<!DOCTYPE html>
-<html>
- <head>
- <title>Import Document</title>
- </head>
- <body>
- <p>Import Document body</p>
- </body>
-</html>
diff --git a/testing/web-platform/tests/custom-elements/v0/resources/register-and-create-custom-element.html b/testing/web-platform/tests/custom-elements/v0/resources/register-and-create-custom-element.html
deleted file mode 100644
index 3aabff244..000000000
--- a/testing/web-platform/tests/custom-elements/v0/resources/register-and-create-custom-element.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
- <title>Register and create custom element</title>
- <link rel="author" title="Aleksei Yu. Semenov" href="mailto:a.semenov@unipro.ru">
- <link rel="author" title="Sergey G. Grekhov" href="mailto:sgrekhov@unipro.ru">
-</head>
-<body>
- <div id="log"></div>
- <script>
- var proto = Object.create(HTMLElement.prototype);
- proto.createdCallback = function() {
- document.querySelector('#log').textContent = 'Created callback was called';
- };
- document.registerElement('x-element', {prototype: proto});
- </script>
- <x-element id="x-element"></x-element>
-</body>
-</html>
diff --git a/testing/web-platform/tests/custom-elements/v0/resources/x-element.html b/testing/web-platform/tests/custom-elements/v0/resources/x-element.html
deleted file mode 100644
index 0c0d2daad..000000000
--- a/testing/web-platform/tests/custom-elements/v0/resources/x-element.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
- <title>x-element custom element</title>
- <link rel="author" title="Sergey G. Grekhov" href="mailto:sgrekhov@unipro.ru">
-</head>
-<body>
- <x-element id="x-element"></x-element>
-</body>
-</html>
diff --git a/testing/web-platform/tests/custom-elements/v0/resources/x-mathml-element.html b/testing/web-platform/tests/custom-elements/v0/resources/x-mathml-element.html
deleted file mode 100644
index 3efdc2d00..000000000
--- a/testing/web-platform/tests/custom-elements/v0/resources/x-mathml-element.html
+++ /dev/null
@@ -1,12 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
- <title>Custom element in MathML namespace</title>
- <link rel="author" title="Aleksei Yu. Semenov" href="mailto:a.semenov@unipro.ru">
-</head>
-<body>
- <math xmlns="http://www.w3.org/1998/Math/MathML">
- <x-math-element id="x-math-element"></x-math-element>
- </math>
-</body>
-</html>
diff --git a/testing/web-platform/tests/custom-elements/v0/resources/x-svg-element.html b/testing/web-platform/tests/custom-elements/v0/resources/x-svg-element.html
deleted file mode 100644
index 6cea85758..000000000
--- a/testing/web-platform/tests/custom-elements/v0/resources/x-svg-element.html
+++ /dev/null
@@ -1,12 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
- <title>SVG custom element</title>
- <link rel="author" title="Aleksei Yu. Semenov" href="mailto:a.semenov@unipro.ru">
-</head>
-<body>
- <svg height="100" width="100">
- <x-svg-element id="x-svg-element"></x-element>
- </svg>
-</body>
-</html>