mirror of
https://github.com/servo/servo.git
synced 2025-08-18 20:05:34 +01:00
Update web-platform-tests to revision c26470dac73f2df9d4822a0d3482f7eb1ebf57d9
This commit is contained in:
parent
7de87c487b
commit
4d3c932c47
648 changed files with 9014 additions and 4821 deletions
|
@ -0,0 +1,26 @@
|
|||
<!doctype html>
|
||||
<title>XMLHttpRequest: send() - Document with serialization errors</title>
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
<div id="log"></div>
|
||||
<script>
|
||||
function serialize(input, output) {
|
||||
async_test(t => {
|
||||
const client = new XMLHttpRequest
|
||||
client.open("POST", "resources/content.py")
|
||||
client.send(input)
|
||||
client.onload = t.step_func_done(() => {
|
||||
assert_equals(client.responseText, output)
|
||||
})
|
||||
}, "Serializing documents through XMLHttpRequest: '" + output + "'")
|
||||
}
|
||||
|
||||
var doc = document.implementation.createDocument(null, null, null)
|
||||
serialize(doc, "")
|
||||
doc.appendChild(doc.createElement("test:test"))
|
||||
serialize(doc, "<test:test/>")
|
||||
doc.childNodes[0].setAttribute("test:test", "gee")
|
||||
serialize(doc, "<test:test test:test=\"gee\"/>")
|
||||
doc.childNodes[0].setAttribute("x", "\uD800")
|
||||
serialize(doc, "<test:test test:test=\"gee\" x=\"\uFFFD\"/>")
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue