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

Side by Side Diff: LayoutTests/css3/device-adapt/viewport-insert-rule-before.html

Issue 16962002: [css-device-adapt] insertRule tests and ASSERT for device lengths. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 6 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 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>Inserting an @viewport rule before an existing one (CSSOM)</title>
5 <style>
6 @viewport {
7 width: 500px;
8 }
9 </style>
10 <script>
11 function test() {
12 if (window.testRunner) {
13 testRunner.dumpAsText();
14 document.styleSheets[0].insertRule("@viewport {width: 1000px}", 0);
15 document.body.offsetWidth; // Trigger style resolving
16 alert(internals.configurationForViewport(document, 1, 320, 480, 320, 352)) ;
17 }
18 }
19 </script>
20 </head>
21 <body onload="test()"></body>
22 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698