Update web-platform-tests to revision 0d318188757a9c996e20b82db201fd04de5aa255

This commit is contained in:
James Graham 2015-03-27 09:15:38 +00:00
parent b2a5225831
commit 1a81b18b9f
12321 changed files with 544385 additions and 6 deletions

View file

@ -0,0 +1,9 @@
<!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>

View file

@ -0,0 +1,10 @@
<!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>

View file

@ -0,0 +1,10 @@
<!DOCTYPE html>
<html>
<head>
<title>Import Master Document</title>
<link rel="import" href="import.html">
</head>
<body>
<p>Master document body</p>
</body>
</html>

View file

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<title>Import Document</title>
</head>
<body>
<p>Import Document body</p>
</body>
</html>

View file

@ -0,0 +1,19 @@
<!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').innerText = 'Created callback was called';
};
document.registerElement('x-element', {prototype: proto});
</script>
<x-element id="x-element"></x-element>
</body>
</html>

View file

@ -0,0 +1,10 @@
<!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>

View file

@ -0,0 +1,12 @@
<!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>

View file

@ -0,0 +1,12 @@
<!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>