1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
<!-- quirks mode is important, text/css is already required otherwise -->
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<div id=log></div>
<script>
var fails = [null, "", "x", "x/x", "text/html", "text/json"],
passes = ["text/css", "text/css;charset=utf-8", "text/css;blah"]
const get_url = (mime) => {
let url = "resources/css.py"
if (mime != null) {
url += "?type=" + encodeURIComponent(mime)
}
return url
}
fails.forEach(function(mime) {
async_test(function(t) {
var link = document.createElement("link")
link.rel = "stylesheet"
link.onerror = t.step_func_done()
link.onload = t.unreached_func("Unexpected load event")
link.href = get_url(mime)
document.body.appendChild(link)
}, "URL query: " + mime)
})
fails.forEach(function(mime) {
async_test(function(t) {
var link = document.createElement("link")
link.rel = "stylesheet"
link.onerror = t.step_func_done()
link.onload = t.unreached_func("Unexpected load event")
link.href = get_url(mime)
document.body.appendChild(link)
}, "Revalidated URL query: " + mime)
})
passes.forEach(function(mime) {
async_test(function(t) {
var link = document.createElement("link")
link.rel = "stylesheet"
link.onerror = t.unreached_func("Unexpected error event")
link.onload = t.step_func_done()
link.href = get_url(mime)
document.body.appendChild(link)
}, "URL query: " + mime)
})
passes.forEach(function(mime) {
async_test(function(t) {
var link = document.createElement("link")
link.rel = "stylesheet"
link.onerror = t.unreached_func("Unexpected error event")
link.onload = t.step_func_done()
link.href = get_url(mime)
document.body.appendChild(link)
}, "Revalidated URL query: " + mime)
})
</script>
|