Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-backgrounds/background-clip/clip-border-area-on-body-propagated-to-root.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>background-clip:border-area on the root</title>
<link rel="match" href="../reference/green-root-background.html">
<style>
html, body {
box-sizing: border-box;
height: 100%;
margin: 0;
}
html {
color: transparent;
border: 20px solid transparent;
}
body {
background-color: green;
background-clip: border-area;
}
</style>
The border should not be visible; the page should be entirely green.