mirror of
https://github.com/servo/servo.git
synced 2025-08-15 10:25:32 +01:00
Update web-platform-tests to revision e426a6933a05bf144eba06a1d4c47ba876a4e2d1
This commit is contained in:
parent
415b26e4f1
commit
5e5eccabf8
495 changed files with 14920 additions and 784 deletions
|
@ -0,0 +1,28 @@
|
|||
<!DOCTYPE html>
|
||||
<title>CSS Overflow and Transforms: css-overflow-3</title>
|
||||
<link rel="author" href="mailto:atotic@google.com">
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
<link rel="help" href="https://crbug.com/964924">
|
||||
<meta name="assert" content="chrome does not crash with css contain edge case">
|
||||
<style>
|
||||
* {
|
||||
contain: size layout;
|
||||
}
|
||||
html {
|
||||
outline-style: auto;
|
||||
margin-bottom: 39%;
|
||||
}
|
||||
#target {
|
||||
-webkit-appearance: push-button;
|
||||
}
|
||||
</style>
|
||||
<output id="target">text</output>
|
||||
<script>
|
||||
test(() => {
|
||||
document.body.offsetTop;
|
||||
document.querySelector("#target").value = "";
|
||||
document.body.offsetTop;
|
||||
assert_equals(document.querySelector("#target").value, "");
|
||||
}, 'chrome does not crash with contain');
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue