Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(10)

Side by Side Diff: third_party/WebKit/Source/web/tests/data/frameserialization/popup.html

Issue 2656713002: Merge to M57: Remove popup overlay from MHTML when requested (Closed)
Patch Set: Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <html>
2 <head>
3 <meta charset="utf8">
4 <title>Test Popup Overlay</title>
5 <style type="text/css">
6 .overlay {
7 position: fixed;
8 z-index: 1000;
9 top: 0;
10 left: 0;
11 width: 100%;
12 height: 100%;
13 background: rgba(0,0,0,0.5);
14 }
15 .modal {
16 position: fixed;
17 z-index: 1001;
18 left: 50%;
19 top: 50%;
20 width: 200px;
21 height: 100px;
22 margin-left: -100px;
23 margin-top: -50px;
24 background-color: #ffffff;
25 text-align: center;
26 line-height: 100px;
27 }
28 </style>
29 </head>
30 <body>
31 <div class="overlay"></div>
32 <div class="modal">Popup</div>
33 <div>Some text.</div>
34 </body>
35 </html>
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/tests/WebFrameSerializerTest.cpp ('k') | third_party/WebKit/public/web/WebFrameSerializer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698