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

Unified 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 side-by-side diff with in-line comments
Download patch
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>
« 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