Update web-platform-tests to revision e426a6933a05bf144eba06a1d4c47ba876a4e2d1

This commit is contained in:
WPT Sync Bot 2019-05-22 10:24:35 +00:00
parent 415b26e4f1
commit 5e5eccabf8
495 changed files with 14920 additions and 784 deletions

View file

@ -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>