mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
1036e104ef
...because it depends on computed values that could be changed without rebuilding paintable tree.
14 lines
312 B
HTML
14 lines
312 B
HTML
<!DOCTYPE html>
|
|
<link rel="match" href="reference/change-opacity-ref.html" />
|
|
<style>
|
|
#box {
|
|
width: 100px;
|
|
height: 100px;
|
|
background-color: greenyellow;
|
|
opacity: 0;
|
|
}
|
|
</style>
|
|
<div id="box"></div>
|
|
<script>
|
|
document.getElementById("box").style.opacity = "1";
|
|
</script>
|