mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-13 18:37:37 +02:00
(cherry picked from commit 4408ea7c9be1b3faefb5d68871ddd60f912a431b; amended to add a trailing space to calc-missing-context.txt since we don't have LadybirdBrowser/ladybird#1603 yet)
16 lines
351 B
HTML
16 lines
351 B
HTML
<script src="../include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
const testElement = document.getElementById('target');
|
|
testElement.style = "";
|
|
|
|
testElement.style.transform = 'rotate(atan2(1rem, -1rem))';
|
|
|
|
getComputedStyle(testElement).transform;
|
|
|
|
println("NO CRASH");
|
|
|
|
});
|
|
</script>
|
|
<div id="target"></div>
|