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

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

Issue 1183233002: Split RW hint into Width and Viewport-Width (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed and added layout 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
« no previous file with comments | « no previous file | LayoutTests/http/tests/misc/client-hints-accept-meta.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <?php 1 <?php
2 header("ACCEPT-CH: DPR, RW"); 2 header("ACCEPT-CH: DPR, Width, Viewport-Width");
3 ?> 3 ?>
4 <!DOCTYPE html> 4 <!DOCTYPE html>
5 <script src="../resources/testharness.js"></script> 5 <script src="../resources/testharness.js"></script>
6 <script src="../resources/testharnessreport.js"></script> 6 <script src="../resources/testharnessreport.js"></script>
7 <body> 7 <body>
8 <script> 8 <script>
9 var t = async_test('Client-Hints sent when Accept-CH header is present') ; 9 var t = async_test('Client-Hints sent when Accept-CH header is present') ;
10 var unreached = function() { 10 var unreached = function() {
11 assert_unreached("Image should have loaded."); 11 assert_unreached("Image should have loaded.");
12 }; 12 };
13 13
14 var loadRWImage = function() { 14 var loadRWImage = function() {
15 var img = new Image(); 15 var img = new Image();
16 img.src = 'resources/image-checks-for-rw.php'; 16 img.src = 'resources/image-checks-for-width.php';
17 img.onload = t.step_func(function(){ t.done(); }); 17 img.onload = t.step_func(function(){ t.done(); });
18 img.onerror = t.step_func(unreached); 18 img.onerror = t.step_func(unreached);
19 document.body.appendChild(img); 19 document.body.appendChild(img);
20 }; 20 };
21 var loadViewportImage = function() {
22 var img = new Image();
23 img.src = 'resources/image-checks-for-viewport-width.php';
24 img.onload = t.step_func(loadRWImage);
25 img.onerror = t.step_func(unreached);
26 document.body.appendChild(img);
27 };
21 t.step(function() { 28 t.step(function() {
22 var img = new Image(); 29 var img = new Image();
23 img.src = 'resources/image-checks-for-dpr.php'; 30 img.src = 'resources/image-checks-for-dpr.php';
24 img.onload = t.step_func(loadRWImage); 31 img.onload = t.step_func(loadViewportImage);
25 img.onerror = t.step_func(unreached); 32 img.onerror = t.step_func(unreached);
26 document.body.appendChild(img); 33 document.body.appendChild(img);
27 }); 34 });
28 </script> 35 </script>
29 </body> 36 </body>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/http/tests/misc/client-hints-accept-meta.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698