mirror of
https://github.com/servo/servo
synced 2026-05-10 00:52:08 +02:00
17 lines
597 B
HTML
17 lines
597 B
HTML
<!doctype html>
|
|
<title>Reusing cached lines multiple times should not crash</title>
|
|
<link rel="author" href="mailto:kojii@chromium.org">
|
|
<link rel="help" href="https://crbug.com/1102083">
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
<a><object id="target"><b></b></object><br></a>
|
|
<script>
|
|
test(() => {
|
|
const target = document.getElementById('target');
|
|
target.style.setProperty('transition-delay', '9999s');
|
|
document.body.offsetWidth;
|
|
target.style.transform = 'scale(1)';
|
|
document.body.offsetHeight;
|
|
}, 'No crash');
|
|
</script>
|