mirror of
https://github.com/servo/servo.git
synced 2025-06-13 10:54:29 +00:00
29 lines
374 B
HTML
29 lines
374 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<!-- Tests that `overflow-x` and `overflow-y` work. -->
|
|
<style>
|
|
section {
|
|
position: absolute;
|
|
left: 0;
|
|
background: green;
|
|
}
|
|
#x {
|
|
top: 0;
|
|
width: 100px;
|
|
height: 100px;
|
|
}
|
|
#y {
|
|
top: 200px;
|
|
width: 100px;
|
|
height: 100px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<section id=x></section>
|
|
<section id=y></section>
|
|
</body>
|
|
</html>
|
|
|
|
|