mirror of
https://github.com/servo/servo.git
synced 2025-08-25 07:08:21 +01:00
Update web-platform-tests to revision bda2059150dca8ab47f088b4cc619fcdc1f262fa
This commit is contained in:
parent
3535f3f6c2
commit
7c4281f3da
182 changed files with 7692 additions and 1042 deletions
1130
tests/wpt/web-platform-tests/url/setters_tests.json
Normal file
1130
tests/wpt/web-platform-tests/url/setters_tests.json
Normal file
File diff suppressed because it is too large
Load diff
|
@ -2,7 +2,6 @@
|
|||
<meta charset=utf-8>
|
||||
<script src=/resources/testharness.js></script>
|
||||
<script src=/resources/testharnessreport.js></script>
|
||||
<script src=urltestparser.js></script>
|
||||
<div id=log></div>
|
||||
<script>
|
||||
function runURLConstructorTests() {
|
||||
|
|
46
tests/wpt/web-platform-tests/url/url-setters.html
Normal file
46
tests/wpt/web-platform-tests/url/url-setters.html
Normal file
|
@ -0,0 +1,46 @@
|
|||
<!doctype html>
|
||||
<meta charset=utf-8>
|
||||
<script src=/resources/testharness.js></script>
|
||||
<script src=/resources/testharnessreport.js></script>
|
||||
<div id=log></div>
|
||||
<script>
|
||||
function startURLSettersTests() {
|
||||
var setup = async_test("Loading data…")
|
||||
setup.step(function() {
|
||||
var request = new XMLHttpRequest()
|
||||
request.open("GET", "setters_tests.json")
|
||||
request.send()
|
||||
request.responseType = "json"
|
||||
request.onload = setup.step_func(function() {
|
||||
runURLSettersTests(request.response)
|
||||
setup.done()
|
||||
})
|
||||
})
|
||||
}
|
||||
|
||||
function runURLSettersTests(all_test_cases) {
|
||||
for (var attribute_to_be_set in all_test_cases) {
|
||||
if (attribute_to_be_set == "comment") {
|
||||
continue;
|
||||
}
|
||||
var test_cases = all_test_cases[attribute_to_be_set];
|
||||
for(var i = 0, l = test_cases.length; i < l; i++) {
|
||||
var test_case = test_cases[i];
|
||||
var name = "Setting <" + test_case.href + ">." + attribute_to_be_set +
|
||||
" = '" + test_case.new_value + "'";
|
||||
if ("comment" in test_case) {
|
||||
name += " " + test_case.comment;
|
||||
}
|
||||
test(function() {
|
||||
var url = new URL(test_case.href);
|
||||
url[attribute_to_be_set] = test_case.new_value;
|
||||
for (var attribute in test_case.expected) {
|
||||
assert_equals(url[attribute], test_case.expected[attribute])
|
||||
}
|
||||
}, name)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
startURLSettersTests()
|
||||
</script>
|
|
@ -4273,5 +4273,43 @@
|
|||
"search": "??a=b&c=d",
|
||||
"searchParams": "%3Fa=b&c=d",
|
||||
"hash": ""
|
||||
},
|
||||
"# Scheme only",
|
||||
{
|
||||
"input": "http:",
|
||||
"base": "http://example.org/foo/bar",
|
||||
"href": "http://example.org/foo/bar",
|
||||
"origin": "http://example.org",
|
||||
"protocol": "http:",
|
||||
"username": "",
|
||||
"password": "",
|
||||
"host": "example.org",
|
||||
"hostname": "example.org",
|
||||
"port": "",
|
||||
"pathname": "/foo/bar",
|
||||
"search": "",
|
||||
"searchParams": "",
|
||||
"hash": ""
|
||||
},
|
||||
{
|
||||
"input": "http:",
|
||||
"base": "https://example.org/foo/bar",
|
||||
"failure": true
|
||||
},
|
||||
{
|
||||
"input": "sc:",
|
||||
"base": "https://example.org/foo/bar",
|
||||
"href": "sc:",
|
||||
"origin": "null",
|
||||
"protocol": "sc:",
|
||||
"username": "",
|
||||
"password": "",
|
||||
"host": "",
|
||||
"hostname": "",
|
||||
"port": "",
|
||||
"pathname": "",
|
||||
"search": "",
|
||||
"searchParams": "",
|
||||
"hash": ""
|
||||
}
|
||||
]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue