gecko-dev/gfx/tests/reftest/1429411-ref.html
2018-01-15 23:46:41 +08:00

26 lines
345 B
HTML

<!DOCTYPE html>
<html lang="en">
<meta charset="utf-8">
<style>
.outer {
position: absolute;
width: 200px;
height: 150px;
overflow: hidden;
}
.inner {
position: absolute;
top: 3px;
left: 3px;
width: 200px;
height: 150px;
box-shadow: blue 0px 0px 20px inset;
}
</style>
<div class="outer">
<div class="inner"></div>
</div>