mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-14 23:22:52 +00:00
21 lines
382 B
HTML
21 lines
382 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
div::before {
|
|
content: "";
|
|
display: block;
|
|
width: 100px;
|
|
height: 100px;
|
|
background-color: gray;
|
|
transform: rotate(45deg);
|
|
}
|
|
</style>
|
|
<div></div>
|
|
|
|
<script src="../include.js"></script>
|
|
|
|
<script>
|
|
test(() => {
|
|
internals.click(50, 60);
|
|
println("PASS (didn't crash)");
|
|
});
|
|
</script>
|