mirror of
https://github.com/servo/servo.git
synced 2025-08-05 21:50:18 +01:00
Update web-platform-tests to revision 386d27678c48bf468b8d374e2ba718e32185a5b7
This commit is contained in:
parent
c24420ddbe
commit
dd79cdc697
32 changed files with 336 additions and 167 deletions
|
@ -0,0 +1,9 @@
|
|||
<!doctype html>
|
||||
<title>Test reference</title>
|
||||
<style>
|
||||
html, body { margin: 0 }
|
||||
</style>
|
||||
<iframe src="about:blank"></iframe>
|
||||
<div>
|
||||
PASS
|
||||
</div>
|
|
@ -0,0 +1,19 @@
|
|||
<!doctype html>
|
||||
<title>Appending from the parser after adopting in an XML document doesn't miss notifications</title>
|
||||
<link rel="match" href="adopt-while-parsing-001-ref.html">
|
||||
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1511329">
|
||||
<link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io">
|
||||
<link rel="author" title="Mozilla" href="https://mozilla.org">
|
||||
<style>
|
||||
html, body { margin: 0 }
|
||||
</style>
|
||||
<script>
|
||||
// If we don't get notified of the <div> insertion, the PASS text will never appear.
|
||||
function parsingInterrupted() {
|
||||
let frameDoc = document.querySelector("iframe").contentDocument;
|
||||
let root = frameDoc.documentElement;
|
||||
document.documentElement.appendChild(root);
|
||||
root.offsetTop;
|
||||
}
|
||||
</script>
|
||||
<iframe src="adopt-while-parsing.xhtml"></iframe>
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<body>
|
||||
<script>
|
||||
window.parent.parsingInterrupted();
|
||||
</script>
|
||||
<div>
|
||||
PASS
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue