mirror of
https://github.com/servo/servo.git
synced 2025-06-16 12:24:29 +00:00
Prior to incremental layout, the code would remove the existing construction result. However, with incremental layout the construction result is cloned rather than removed. This change ensures that the previous construction result is cleared when an element's display type changes to none.
10 lines
130 B
HTML
10 lines
130 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<style type="text/css">
|
|
body {
|
|
background-color: green;
|
|
}
|
|
</style>
|
|
<body>
|
|
</body>
|
|
</html>
|