mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-13 20:41:53 +00:00
25 lines
No EOL
567 B
HTML
25 lines
No EOL
567 B
HTML
<!DOCTYPE html>
|
|
|
|
<head>
|
|
<script src="include.js"></script>
|
|
<style>
|
|
#b input:placeholder-shown {
|
|
border: 2px dashed red;
|
|
background-color: #ffecec;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="a"><input type="text" placeholder=""></input></div>
|
|
<script>
|
|
test(() => {
|
|
document.documentElement.offsetHeight; // force style recalculation
|
|
const a = document.getElementById('a');
|
|
a.id = 'b';
|
|
println("PASS (didn't crash)");
|
|
});
|
|
</script>
|
|
</body>
|
|
|
|
</html> |