Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upRotating squares in the background in twgljs.org is not rendered #26459
Comments
|
I am able to reproduce this issue in Windows 10 in the latest nightly build. |
|
Here's a minimal testcase: <div style="position: fixed; width: 100px; height: 100px; z-index: -1; background-color: green"></div>If we don't use position fixed or z-index, the green box appears. In Layout 2013 this shows a blank page. In layout 2020 we see a green box, but I still don't see the background canvas on the original website. |
|
Here's a minimal testcase for layout 2020: <html>
<style>
html {
background-color: blue
}
#frame {
background-color: rgb(0, 0, 0, 0.7);
color: #ddd;
}
#background {
position: fixed;
width: 100px;
height: 100px;
z-index: -1;
background-color: green;
}
</style>
<div id="background"></div>
<div id="frame">hi</div> |
|
I believe that fixing this depends on #26121. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
While checking https://twgljs.org/ on Firefox, we can see many squares rotating in the background but, in Servo, we can only see a blue background without rotating squares.
Built with latest master (5ee1a48) on macOS 10.14.6