mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-30 05:35:31 +00:00
8f61148e20
--HG-- extra : rebase_source : 6d0e32671be60f4a2bebdbf1b2cfade8c9fc0539
22 lines
305 B
HTML
22 lines
305 B
HTML
<!DOCTYPE HTML>
|
|
<head>
|
|
<style>
|
|
.parent {
|
|
width: 200px;
|
|
height: 200px;
|
|
isolation: isolate;
|
|
}
|
|
.child {
|
|
width: 200px;
|
|
height: 200px;
|
|
background: #7775b6;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="parent">
|
|
<div class="child">
|
|
</div>
|
|
</div>
|
|
</body>
|