mirror of
https://github.com/servo/servo.git
synced 2025-06-04 07:35:36 +00:00
16 lines
439 B
HTML
Vendored
16 lines
439 B
HTML
Vendored
<!doctype html>
|
|
<title>Datetime input doesn't have stacking contexts inside</title>
|
|
<link rel="help" href="https://drafts.csswg.org/css-forms/"> <!-- a bit of a stretch but... -->
|
|
<link rel="match" href="datetime-stacking-context-ref.html">
|
|
<style>
|
|
#cover {
|
|
background: white;
|
|
position: fixed;
|
|
width: 100%;
|
|
height: 200px;
|
|
top: 0;
|
|
border: 1px solid black;
|
|
}
|
|
</style>
|
|
<div id="cover"></div>
|
|
<input type=datetime>
|