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

Unified Diff: LayoutTests/compositing/geometry/fixed-position-composited-page-scale-smaller-than-viewport.html

Issue 190723007: Fix tests to be compatible with Android scale initialization. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Reupload Created 6 years, 9 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: LayoutTests/compositing/geometry/fixed-position-composited-page-scale-smaller-than-viewport.html
diff --git a/LayoutTests/compositing/geometry/fixed-position-composited-page-scale-smaller-than-viewport.html b/LayoutTests/compositing/geometry/fixed-position-composited-page-scale-smaller-than-viewport.html
index 3ce6c2e0b5b218ffb1324d98830f45aa8929d152..43af8817d3cb6b9b57a5edb8b9fd231a2941d03c 100644
--- a/LayoutTests/compositing/geometry/fixed-position-composited-page-scale-smaller-than-viewport.html
+++ b/LayoutTests/compositing/geometry/fixed-position-composited-page-scale-smaller-than-viewport.html
@@ -2,10 +2,10 @@
<html>
<head>
<style>
- body {
- width: 1000px;
- height: 800px;
- }
+ ::-webkit-scrollbar {
+ width: 0px;
+ height: 0px;
+ }
.reference {
position: absolute;
left: 51px;
@@ -31,7 +31,7 @@
}
</script>
</head>
-<body>
+<body style="width: 4000px; height: 4000px">
On success, the blue reference box should be invisible (covered by the fixed box).
<div class="reference"></div>
<div class="fixed"></div>

Powered by Google App Engine
This is Rietveld 408576698