Update web-platform-tests to revision dc5cbf088edcdb266541d4e5a76149a2c6e716a0

This commit is contained in:
Ms2ger 2016-09-09 09:40:35 +02:00
parent 1d40075f03
commit 079092dfea
2381 changed files with 90360 additions and 17722 deletions

View file

@ -1,11 +1,14 @@
<!DOCTYPE html>
<title>dataset: should return 'undefined' for non-existent properties</title>
<title>dataset: should exist and work on HTML and SVG elements, but not random elements</title>
<link rel="author" title="Ms2ger" href="mailto:ms2ger@gmail.com">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="log"></div>
<script>
var div = document.createElement("div");
test(function() {
assert_true(div.dataset instanceof DOMStringMap);
}, "HTML elements should have a .dataset");
test(function() {
assert_false("foo" in div.dataset);
assert_equals(div.dataset.foo, undefined);
@ -25,4 +28,11 @@ test(function() {
assert_false("foo" in div.dataset);
assert_equals(div.dataset.foo, undefined);
}, "Should return 'undefined' after removing an attribute")
test(function() {
assert_equals(document.createElementNS("test", "test").dataset, undefined);
}, "Should not have a .dataset on random elements");
test(function() {
var svg = document.createElementNS("http://www.w3.org/2000/svg", "svg")
assert_true(svg.dataset instanceof DOMStringMap);
}, "SVG elements should have a .dataset");
</script>

View file

@ -3,7 +3,6 @@
<head>
<meta charset="utf-8" />
<title>HTML Test: dir=auto, start with EN, then L</title>
<link rel="match" href="dir_auto-EN-L-ref.html" />
<link rel="author" title="Matitiahu Allouche" href="mailto:matitiahu.allouche@google.com" />
<link rel="author" title="Oren Roth" href="mailto:oren.roth@gmail.com" />
<link rel="author" title="HTML5 bidi test WG" href="mailto:html5bidi@googlegroups.com" />

View file

@ -3,7 +3,6 @@
<head>
<meta charset="utf-8" />
<title>HTML Test: dir=auto, start with EN, then R</title>
<link rel="match" href="dir_auto-EN-R-ref.html" />
<link rel="author" title="Matitiahu Allouche" href="mailto:matitiahu.allouche@google.com" />
<link rel="author" title="Oren Roth" href="mailto:oren.roth@gmail.com" />
<link rel="author" title="HTML5 bidi test WG" href="mailto:html5bidi@googlegroups.com" />

View file

@ -3,7 +3,6 @@
<head>
<meta charset="utf-8" />
<title>HTML Test: dir=auto, start with L</title>
<link rel="match" href="dir_auto-L-ref.html" />
<link rel="author" title="Matitiahu Allouche" href="mailto:matitiahu.allouche@google.com" />
<link rel="author" title="Oren Roth" href="mailto:oren.roth@gmail.com" />
<link rel="author" title="HTML5 bidi test WG" href="mailto:html5bidi@googlegroups.com" />

View file

@ -3,7 +3,6 @@
<head>
<meta charset="utf-8" />
<title>HTML Test: dir=auto, start with N, then EN, then L</title>
<link rel="match" href="dir_auto-N-EN-L-ref.html" />
<link rel="author" title="Matitiahu Allouche" href="mailto:matitiahu.allouche@google.com" />
<link rel="author" title="Oren Roth" href="mailto:oren.roth@gmail.com" />
<link rel="author" title="HTML5 bidi test WG" href="mailto:html5bidi@googlegroups.com" />

View file

@ -3,7 +3,6 @@
<head>
<meta charset="utf-8" />
<title>HTML Test: dir=auto, start with N, then EN, then R</title>
<link rel="match" href="dir_auto-N-EN-R-ref.html" />
<link rel="author" title="Matitiahu Allouche" href="mailto:matitiahu.allouche@google.com" />
<link rel="author" title="Oren Roth" href="mailto:oren.roth@gmail.com" />
<link rel="author" title="HTML5 bidi test WG" href="mailto:html5bidi@googlegroups.com" />

View file

@ -3,7 +3,6 @@
<head>
<meta charset="utf-8" />
<title>HTML Test: dir=auto, start with N, then L</title>
<link rel="match" href="dir_auto-N-L-ref.html" />
<link rel="author" title="Matitiahu Allouche" href="mailto:matitiahu.allouche@google.com" />
<link rel="author" title="Oren Roth" href="mailto:oren.roth@gmail.com" />
<link rel="author" title="HTML5 bidi test WG" href="mailto:html5bidi@googlegroups.com" />

View file

@ -3,7 +3,6 @@
<head>
<meta charset="utf-8" />
<title>HTML Test: dir=auto, start with N, then R</title>
<link rel="match" href="dir_auto-N-R-ref.html" />
<link rel="author" title="Matitiahu Allouche" href="mailto:matitiahu.allouche@google.com" />
<link rel="author" title="Oren Roth" href="mailto:oren.roth@gmail.com" />
<link rel="author" title="HTML5 bidi test WG" href="mailto:html5bidi@googlegroups.com" />

View file

@ -3,7 +3,6 @@
<head>
<meta charset="utf-8" />
<title>HTML Test: dir=auto, start with R</title>
<link rel="match" href="dir_auto-R-ref.html" />
<link rel="author" title="Matitiahu Allouche" href="mailto:matitiahu.allouche@google.com" />
<link rel="author" title="Oren Roth" href="mailto:oren.roth@gmail.com" />
<link rel="author" title="HTML5 bidi test WG" href="mailto:html5bidi@googlegroups.com" />

View file

@ -3,7 +3,6 @@
<head>
<meta charset="utf-8" />
<title>HTML Test: dir=auto, start with L within contained element</title>
<link rel="match" href="dir_auto-contained-L-ref.html" />
<link rel="author" title="Matitiahu Allouche" href="mailto:matitiahu.allouche@google.com" />
<link rel="author" title="Oren Roth" href="mailto:oren.roth@gmail.com" />
<link rel="author" title="HTML5 bidi test WG" href="mailto:html5bidi@googlegroups.com" />

View file

@ -3,7 +3,6 @@
<head>
<meta charset="utf-8" />
<title>HTML Test: dir=auto, start with R within contained element</title>
<link rel="match" href="dir_auto-contained-R-ref.html" />
<link rel="author" title="Matitiahu Allouche" href="mailto:matitiahu.allouche@google.com" />
<link rel="author" title="Oren Roth" href="mailto:oren.roth@gmail.com" />
<link rel="author" title="HTML5 bidi test WG" href="mailto:html5bidi@googlegroups.com" />

View file

@ -3,7 +3,6 @@
<head>
<meta charset="utf-8" />
<title>HTML Test: dir=auto, start with bdi, then L</title>
<link rel="match" href="dir_auto-contained-bdi-L-ref.html" />
<link rel="author" title="Matitiahu Allouche" href="mailto:matitiahu.allouche@google.com" />
<link rel="author" title="Oren Roth" href="mailto:oren.roth@gmail.com" />
<link rel="author" title="HTML5 bidi test WG" href="mailto:html5bidi@googlegroups.com" />

View file

@ -3,7 +3,6 @@
<head>
<meta charset="utf-8" />
<title>HTML Test: dir=auto, start with bdi, then R</title>
<link rel="match" href="dir_auto-contained-bdi-R-ref.html" />
<link rel="author" title="Matitiahu Allouche" href="mailto:matitiahu.allouche@google.com" />
<link rel="author" title="Oren Roth" href="mailto:oren.roth@gmail.com" />
<link rel="author" title="HTML5 bidi test WG" href="mailto:html5bidi@googlegroups.com" />

View file

@ -3,7 +3,6 @@
<head>
<meta charset="utf-8" />
<title>HTML Test: dir=auto, start with dir, then L</title>
<link rel="match" href="dir_auto-contained-dir-L-ref.html" />
<link rel="author" title="Matitiahu Allouche" href="mailto:matitiahu.allouche@google.com" />
<link rel="author" title="Oren Roth" href="mailto:oren.roth@gmail.com" />
<link rel="author" title="HTML5 bidi test WG" href="mailto:html5bidi@googlegroups.com" />

View file

@ -3,7 +3,6 @@
<head>
<meta charset="utf-8" />
<title>HTML Test: dir=auto, start with dir, then R</title>
<link rel="match" href="dir_auto-contained-dir-R-ref.html" />
<link rel="author" title="Matitiahu Allouche" href="mailto:matitiahu.allouche@google.com" />
<link rel="author" title="Oren Roth" href="mailto:oren.roth@gmail.com" />
<link rel="author" title="HTML5 bidi test WG" href="mailto:html5bidi@googlegroups.com" />

View file

@ -3,7 +3,6 @@
<head>
<meta charset="utf-8" />
<title>HTML Test: dir=auto, start with dir=auto, then L</title>
<link rel="match" href="dir_auto-contained-dir_auto-L-ref.html" />
<link rel="author" title="Matitiahu Allouche" href="mailto:matitiahu.allouche@google.com" />
<link rel="author" title="Oren Roth" href="mailto:oren.roth@gmail.com" />
<link rel="author" title="HTML5 bidi test WG" href="mailto:html5bidi@googlegroups.com" />

View file

@ -3,7 +3,6 @@
<head>
<meta charset="utf-8" />
<title>HTML Test: dir=auto, start with dir=auto, then R</title>
<link rel="match" href="dir_auto-contained-dir_auto-R-ref.html" />
<link rel="author" title="Matitiahu Allouche" href="mailto:matitiahu.allouche@google.com" />
<link rel="author" title="Oren Roth" href="mailto:oren.roth@gmail.com" />
<link rel="author" title="HTML5 bidi test WG" href="mailto:html5bidi@googlegroups.com" />

View file

@ -3,7 +3,6 @@
<head>
<meta charset="utf-8" />
<title>HTML Test: dir=auto, start with script, then L</title>
<link rel="match" href="dir_auto-contained-script-L-ref.html" />
<link rel="author" title="Matitiahu Allouche" href="mailto:matitiahu.allouche@google.com" />
<link rel="author" title="Oren Roth" href="mailto:oren.roth@gmail.com" />
<link rel="author" title="HTML5 bidi test WG" href="mailto:html5bidi@googlegroups.com" />

View file

@ -3,7 +3,6 @@
<head>
<meta charset="utf-8" />
<title>HTML Test: dir=auto, start with script, then R</title>
<link rel="match" href="dir_auto-contained-script-R-ref.html" />
<link rel="author" title="Matitiahu Allouche" href="mailto:matitiahu.allouche@google.com" />
<link rel="author" title="Oren Roth" href="mailto:oren.roth@gmail.com" />
<link rel="author" title="HTML5 bidi test WG" href="mailto:html5bidi@googlegroups.com" />

View file

@ -3,7 +3,6 @@
<head>
<meta charset="utf-8" />
<title>HTML Test: dir=auto, start with style, then L</title>
<link rel="match" href="dir_auto-contained-style-L-ref.html" />
<link rel="author" title="Matitiahu Allouche" href="mailto:matitiahu.allouche@google.com" />
<link rel="author" title="Oren Roth" href="mailto:oren.roth@gmail.com" />
<link rel="author" title="HTML5 bidi test WG" href="mailto:html5bidi@googlegroups.com" />

View file

@ -3,7 +3,6 @@
<head>
<meta charset="utf-8" />
<title>HTML Test: dir=auto, start with style, then R</title>
<link rel="match" href="dir_auto-contained-style-R-ref.html" />
<link rel="author" title="Matitiahu Allouche" href="mailto:matitiahu.allouche@google.com" />
<link rel="author" title="Oren Roth" href="mailto:oren.roth@gmail.com" />
<link rel="author" title="HTML5 bidi test WG" href="mailto:html5bidi@googlegroups.com" />

View file

@ -3,7 +3,6 @@
<head>
<meta charset="utf-8" />
<title>HTML Test: dir=auto, start with textarea, then L</title>
<link rel="match" href="dir_auto-contained-textarea-L-ref.html" />
<link rel="author" title="Matitiahu Allouche" href="mailto:matitiahu.allouche@google.com" />
<link rel="author" title="Oren Roth" href="mailto:oren.roth@gmail.com" />
<link rel="author" title="HTML5 bidi test WG" href="mailto:html5bidi@googlegroups.com" />

View file

@ -3,7 +3,6 @@
<head>
<meta charset="utf-8" />
<title>HTML Test: dir=auto, start with textarea, then R</title>
<link rel="match" href="dir_auto-contained-textarea-R-ref.html" />
<link rel="author" title="Matitiahu Allouche" href="mailto:matitiahu.allouche@google.com" />
<link rel="author" title="Oren Roth" href="mailto:oren.roth@gmail.com" />
<link rel="author" title="HTML5 bidi test WG" href="mailto:html5bidi@googlegroups.com" />

View file

@ -3,7 +3,6 @@
<head>
<meta charset="utf-8" />
<title>HTML Test: input with dir=auto, start with EN+L</title>
<link rel="match" href="dir_auto-input-EN-L-ref.html" />
<link rel="author" title="Matitiahu Allouche" href="mailto:matitiahu.allouche@google.com" />
<link rel="author" title="Oren Roth" href="mailto:oren.roth@gmail.com" />
<link rel="author" title="Shai Berger" href="mailto:shai@platonix.com" />

View file

@ -3,7 +3,6 @@
<head>
<meta charset="utf-8" />
<title>HTML Test: input with dir=auto, start with EN+R</title>
<link rel="match" href="dir_auto-input-EN-R-ref.html" />
<link rel="author" title="Matitiahu Allouche" href="mailto:matitiahu.allouche@google.com" />
<link rel="author" title="Oren Roth" href="mailto:oren.roth@gmail.com" />
<link rel="author" title="Shai Berger" href="mailto:shai@platonix.com" />

View file

@ -3,7 +3,6 @@
<head>
<meta charset="utf-8" />
<title>HTML Test: input with dir=auto, start with L</title>
<link rel="match" href="dir_auto-input-L-ref.html" />
<link rel="author" title="Matitiahu Allouche" href="mailto:matitiahu.allouche@google.com" />
<link rel="author" title="Oren Roth" href="mailto:oren.roth@gmail.com" />
<link rel="author" title="Shai Berger" href="mailto:shai@platonix.com" />

View file

@ -3,7 +3,6 @@
<head>
<meta charset="utf-8" />
<title>HTML Test: input with dir=auto, start with N+EN+L</title>
<link rel="match" href="dir_auto-input-N-EN-L-ref.html" />
<link rel="author" title="Matitiahu Allouche" href="mailto:matitiahu.allouche@google.com" />
<link rel="author" title="Oren Roth" href="mailto:oren.roth@gmail.com" />
<link rel="author" title="Shai Berger" href="mailto:shai@platonix.com" />

View file

@ -3,7 +3,6 @@
<head>
<meta charset="utf-8" />
<title>HTML Test: input with dir=auto, start with N+EN+R</title>
<link rel="match" href="dir_auto-input-N-EN-R-ref.html" />
<link rel="author" title="Matitiahu Allouche" href="mailto:matitiahu.allouche@google.com" />
<link rel="author" title="Oren Roth" href="mailto:oren.roth@gmail.com" />
<link rel="author" title="Shai Berger" href="mailto:shai@platonix.com" />

View file

@ -3,7 +3,6 @@
<head>
<meta charset="utf-8" />
<title>HTML Test: input with dir=auto, all N+EN</title>
<link rel="match" href="dir_auto-input-N-EN-ref.html" />
<link rel="author" title="Matitiahu Allouche" href="mailto:matitiahu.allouche@google.com" />
<link rel="author" title="Oren Roth" href="mailto:oren.roth@gmail.com" />
<link rel="author" title="Shai Berger" href="mailto:shai@platonix.com" />

View file

@ -3,7 +3,6 @@
<head>
<meta charset="utf-8" />
<title>HTML Test: input with dir=auto, start with N+L</title>
<link rel="match" href="dir_auto-input-N-L-ref.html" />
<link rel="author" title="Matitiahu Allouche" href="mailto:matitiahu.allouche@google.com" />
<link rel="author" title="Oren Roth" href="mailto:oren.roth@gmail.com" />
<link rel="author" title="Shai Berger" href="mailto:shai@platonix.com" />

View file

@ -3,7 +3,6 @@
<head>
<meta charset="utf-8" />
<title>HTML Test: input with dir=auto, start with N+R</title>
<link rel="match" href="dir_auto-input-N-R-ref.html" />
<link rel="author" title="Matitiahu Allouche" href="mailto:matitiahu.allouche@google.com" />
<link rel="author" title="Oren Roth" href="mailto:oren.roth@gmail.com" />
<link rel="author" title="Shai Berger" href="mailto:shai@platonix.com" />

View file

@ -3,7 +3,6 @@
<head>
<meta charset="utf-8" />
<title>HTML Test: input with dir=auto, start with R</title>
<link rel="match" href="dir_auto-input-R-ref.html" />
<link rel="author" title="Matitiahu Allouche" href="mailto:matitiahu.allouche@google.com" />
<link rel="author" title="Oren Roth" href="mailto:oren.roth@gmail.com" />
<link rel="author" title="Shai Berger" href="mailto:shai@platonix.com" />

View file

@ -3,7 +3,6 @@
<head>
<meta charset="utf-8" />
<title>HTML Test: input with dir=auto, script assigns to start with EN+L</title>
<link rel="match" href="dir_auto-input-script-EN-L-ref.html" />
<link rel="author" title="Matitiahu Allouche" href="mailto:matitiahu.allouche@google.com" />
<link rel="author" title="Oren Roth" href="mailto:oren.roth@gmail.com" />
<link rel="author" title="Shai Berger" href="mailto:shai@platonix.com" />

View file

@ -3,7 +3,6 @@
<head>
<meta charset="utf-8" />
<title>HTML Test: input with dir=auto, script assigns to start with EN+R</title>
<link rel="match" href="dir_auto-input-script-EN-R-ref.html" />
<link rel="author" title="Matitiahu Allouche" href="mailto:matitiahu.allouche@google.com" />
<link rel="author" title="Oren Roth" href="mailto:oren.roth@gmail.com" />
<link rel="author" title="Shai Berger" href="mailto:shai@platonix.com" />

View file

@ -3,7 +3,6 @@
<head>
<meta charset="utf-8" />
<title>HTML Test: input with dir=auto, script assigns to start with L</title>
<link rel="match" href="dir_auto-input-script-L-ref.html" />
<link rel="author" title="Matitiahu Allouche" href="mailto:matitiahu.allouche@google.com" />
<link rel="author" title="Oren Roth" href="mailto:oren.roth@gmail.com" />
<link rel="author" title="Shai Berger" href="mailto:shai@platonix.com" />

View file

@ -3,7 +3,6 @@
<head>
<meta charset="utf-8" />
<title>HTML Test: input with dir=auto, script assigns to start with N+EN+L</title>
<link rel="match" href="dir_auto-input-script-N-EN-L-ref.html" />
<link rel="author" title="Matitiahu Allouche" href="mailto:matitiahu.allouche@google.com" />
<link rel="author" title="Oren Roth" href="mailto:oren.roth@gmail.com" />
<link rel="author" title="Shai Berger" href="mailto:shai@platonix.com" />

View file

@ -3,7 +3,6 @@
<head>
<meta charset="utf-8" />
<title>HTML Test: input with dir=auto, script assigns to start with N+EN+R</title>
<link rel="match" href="dir_auto-input-script-N-EN-R-ref.html" />
<link rel="author" title="Matitiahu Allouche" href="mailto:matitiahu.allouche@google.com" />
<link rel="author" title="Oren Roth" href="mailto:oren.roth@gmail.com" />
<link rel="author" title="Shai Berger" href="mailto:shai@platonix.com" />

View file

@ -3,7 +3,6 @@
<head>
<meta charset="utf-8" />
<title>HTML Test: input with dir=auto, script assigns to all N+EN</title>
<link rel="match" href="dir_auto-input-script-N-EN-ref.html" />
<link rel="author" title="Matitiahu Allouche" href="mailto:matitiahu.allouche@google.com" />
<link rel="author" title="Oren Roth" href="mailto:oren.roth@gmail.com" />
<link rel="author" title="Shai Berger" href="mailto:shai@platonix.com" />

View file

@ -3,7 +3,6 @@
<head>
<meta charset="utf-8" />
<title>HTML Test: input with dir=auto, script assigns to start with N+L</title>
<link rel="match" href="dir_auto-input-script-N-L-ref.html" />
<link rel="author" title="Matitiahu Allouche" href="mailto:matitiahu.allouche@google.com" />
<link rel="author" title="Oren Roth" href="mailto:oren.roth@gmail.com" />
<link rel="author" title="Shai Berger" href="mailto:shai@platonix.com" />

View file

@ -3,7 +3,6 @@
<head>
<meta charset="utf-8" />
<title>HTML Test: input with dir=auto, script assigns to start with N+R</title>
<link rel="match" href="dir_auto-input-script-N-R-ref.html" />
<link rel="author" title="Matitiahu Allouche" href="mailto:matitiahu.allouche@google.com" />
<link rel="author" title="Oren Roth" href="mailto:oren.roth@gmail.com" />
<link rel="author" title="Shai Berger" href="mailto:shai@platonix.com" />

View file

@ -3,7 +3,6 @@
<head>
<meta charset="utf-8" />
<title>HTML Test: input with dir=auto, script assigns to start with R</title>
<link rel="match" href="dir_auto-input-script-R-ref.html" />
<link rel="author" title="Matitiahu Allouche" href="mailto:matitiahu.allouche@google.com" />
<link rel="author" title="Oren Roth" href="mailto:oren.roth@gmail.com" />
<link rel="author" title="Shai Berger" href="mailto:shai@platonix.com" />

View file

@ -3,7 +3,6 @@
<head>
<meta charset="utf-8" />
<title>HTML Test: dir=auto, isolated in LTR text</title>
<link rel="match" href="dir_auto-isolate-ref.html" />
<link rel="author" title="Matitiahu Allouche" href="mailto:matitiahu.allouche@google.com" />
<link rel="author" title="Oren Roth" href="mailto:oren.roth@gmail.com" />
<link rel="author" title="HTML5 bidi test WG" href="mailto:html5bidi@googlegroups.com" />