mirror of
https://github.com/servo/servo.git
synced 2025-07-16 03:43:38 +01:00
23 lines
796 B
HTML
23 lines
796 B
HTML
<!DOCTYPE html>
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
<base id="base" href="invalid:">
|
|
<svg id="svg">
|
|
<pattern id="pat" xlink:href="#pat"/>
|
|
</svg>
|
|
<script>
|
|
async_test(t => {
|
|
onload = t.step_func_done(() => {
|
|
let pattern = document.getElementById("pat");
|
|
base.href = "";
|
|
document.body.insertBefore(document.getElementById("svg").cloneNode(true),
|
|
document.body.firstChild);
|
|
document.body.offsetTop;
|
|
pattern.setAttribute("clip-rule", "evenodd");
|
|
document.body.offsetTop;
|
|
pattern.setAttribute("width", "0");
|
|
document.getElementById("svg").setAttribute("systemLanguage", "x-nonexistent");
|
|
document.body.offsetTop;
|
|
});
|
|
});
|
|
</script>
|