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

Side by Side Diff: LayoutTests/http/tests/misc/client-hints-accept-meta.html

Issue 1186333004: Add support for `width` based Width Client Hint (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed tests Created 5 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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <meta http-equiv="Accept-CH" content="DPR, Width, Viewport-Width"> 2 <meta http-equiv="Accept-CH" content="DPR, Width, Viewport-Width">
3 <script src="../resources/testharness.js"></script> 3 <script src="../resources/testharness.js"></script>
4 <script src="../resources/testharnessreport.js"></script> 4 <script src="../resources/testharnessreport.js"></script>
5 <body> 5 <body>
6 <script> 6 <script>
7 var t = async_test('Client-Hints sent when Accept-CH header is present') ; 7 var t = async_test('Client-Hints sent when Accept-CH header is present') ;
8 var unreached = function() { 8 var unreached = function() {
9 assert_unreached("Image should have loaded."); 9 assert_unreached("Image should have loaded.");
10 }; 10 };
11 11
12 var loadRWImage = function() { 12 var loadRWImage = function() {
13 var img = new Image(); 13 var img = new Image();
14 img.src = 'resources/image-checks-for-width.php'; 14 img.src = 'resources/image-checks-for-width.php';
15 img.sizes = '100vw';
Mike West 2015/06/18 06:20:03 Here too.
Yoav Weiss 2015/06/18 06:30:21 Same. Meant to make sure the hint is sent.
15 img.onload = t.step_func(function(){ t.done(); }); 16 img.onload = t.step_func(function(){ t.done(); });
16 img.onerror = t.step_func(unreached); 17 img.onerror = t.step_func(unreached);
17 document.body.appendChild(img); 18 document.body.appendChild(img);
18 }; 19 };
19 var loadViewportImage = function() { 20 var loadViewportImage = function() {
20 var img = new Image(); 21 var img = new Image();
21 img.src = 'resources/image-checks-for-viewport-width.php'; 22 img.src = 'resources/image-checks-for-viewport-width.php';
22 img.onload = t.step_func(loadRWImage); 23 img.onload = t.step_func(loadRWImage);
23 img.onerror = t.step_func(unreached); 24 img.onerror = t.step_func(unreached);
24 document.body.appendChild(img); 25 document.body.appendChild(img);
25 }; 26 };
26 t.step(function() { 27 t.step(function() {
27 var img = new Image(); 28 var img = new Image();
28 img.src = 'resources/image-checks-for-dpr.php'; 29 img.src = 'resources/image-checks-for-dpr.php';
29 img.onload = t.step_func(loadViewportImage); 30 img.onload = t.step_func(loadViewportImage);
30 img.onerror = t.step_func(unreached); 31 img.onerror = t.step_func(unreached);
31 document.body.appendChild(img); 32 document.body.appendChild(img);
32 }); 33 });
33 </script> 34 </script>
34 </body> 35 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698