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

Side by Side Diff: LayoutTests/fast/media/mq-size-include-scrollbars.html

Issue 14659008: Include scrollbar size in @media width/height (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: layoutSize(VisibleContentRectIncludesScrollbars) Created 7 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | LayoutTests/fast/media/mq-size-include-scrollbars-expected.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <style>
4 body {
5 background: red;
6 width: 1000px;
7 height: 1000px;
8 }
9 @media (min-width: 795px) {
10 body {
11 background: green;
12 }
13 }
14 @media (min-height: 595px) {
15 body {
16 color: blue;
17 }
18 }
19 </style>
20 <body>
21 Should be blue on green if body's full size (including scrollbars) &gt;= 795x595 px.
22 </body>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/media/mq-size-include-scrollbars-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698