mirror of
https://github.com/servo/servo
synced 2026-05-08 16:12:15 +02: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.
11 lines
130 B
HTML
11 lines
130 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<style type="text/css">
|
|
body {
|
|
background-color: green;
|
|
}
|
|
</style>
|
|
<body>
|
|
</body>
|
|
</html>
|