| Index: third_party/WebKit/Source/web/tests/data/frameserialization/popup.html
|
| diff --git a/third_party/WebKit/Source/web/tests/data/frameserialization/popup.html b/third_party/WebKit/Source/web/tests/data/frameserialization/popup.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..bd8f3cb5064d20c1dfb79b2e3d2fbf636a88c1b5
|
| --- /dev/null
|
| +++ b/third_party/WebKit/Source/web/tests/data/frameserialization/popup.html
|
| @@ -0,0 +1,35 @@
|
| +<html>
|
| +<head>
|
| +<meta charset="utf8">
|
| +<title>Test Popup Overlay</title>
|
| +<style type="text/css">
|
| +.overlay {
|
| + position: fixed;
|
| + z-index: 1000;
|
| + top: 0;
|
| + left: 0;
|
| + width: 100%;
|
| + height: 100%;
|
| + background: rgba(0,0,0,0.5);
|
| +}
|
| +.modal {
|
| + position: fixed;
|
| + z-index: 1001;
|
| + left: 50%;
|
| + top: 50%;
|
| + width: 200px;
|
| + height: 100px;
|
| + margin-left: -100px;
|
| + margin-top: -50px;
|
| + background-color: #ffffff;
|
| + text-align: center;
|
| + line-height: 100px;
|
| +}
|
| +</style>
|
| +</head>
|
| +<body>
|
| +<div class="overlay"></div>
|
| +<div class="modal">Popup</div>
|
| +<div>Some text.</div>
|
| +</body>
|
| +</html>
|
|
|