forked from mirrors/gecko-dev
		
	MozReview-Commit-ID: 1n6P2WJZJy3 --HG-- rename : testing/web-platform/tests/webdriver/tests/maximize_window.py => testing/web-platform/tests/webdriver/tests/contexts/maximize_window.py rename : testing/web-platform/tests/webdriver/tests/cookies.py => testing/web-platform/tests/webdriver/tests/cookies/cookies.py rename : testing/web-platform/tests/webdriver/interface.html => testing/web-platform/tests/webdriver/tests/interface.html rename : testing/web-platform/tests/webdriver/tests/navigation.py => testing/web-platform/tests/webdriver/tests/navigation/current_url.py rename : testing/web-platform/tests/webdriver/status.py => testing/web-platform/tests/webdriver/tests/status.py
		
			
				
	
	
		
			48 lines
		
	
	
	
		
			1.8 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
	
		
			1.8 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html>
 | 
						|
  <head>
 | 
						|
    <title>Preflight cache should be invalidated in presence of custom header</title>
 | 
						|
    <script src="/resources/testharness.js"></script>
 | 
						|
    <script src="/resources/testharnessreport.js"></script>
 | 
						|
    <script src="/common/get-host-info.sub.js"></script>
 | 
						|
    <script src="/common/utils.js"></script>
 | 
						|
  </head>
 | 
						|
  <body>
 | 
						|
    <script type="text/javascript">
 | 
						|
    const uuid = token();
 | 
						|
    const xhr = new XMLHttpRequest;
 | 
						|
 | 
						|
    async_test(function(test) {
 | 
						|
      xhr.onerror = test.unreached_func("FAIL: Network error.");
 | 
						|
      xhr.onload = test.step_func(function() {
 | 
						|
        // Token reset.  We can start the test now.
 | 
						|
        assert_equals(xhr.responseText, "PASS");
 | 
						|
        firstRequest();
 | 
						|
      });
 | 
						|
 | 
						|
      xhr.open("GET", get_host_info().HTTP_REMOTE_ORIGIN + "/XMLHttpRequest/resources/reset-token.py?token=" + uuid, true);
 | 
						|
      xhr.send();
 | 
						|
 | 
						|
      function firstRequest() {
 | 
						|
        xhr.onload = test.step_func(function() {
 | 
						|
          assert_equals(xhr.responseText, "PASS: First PUT request.");
 | 
						|
          secondRequest();
 | 
						|
        });
 | 
						|
        xhr.open("PUT", get_host_info().HTTP_REMOTE_ORIGIN + "/XMLHttpRequest/resources/access-control-basic-preflight-cache-invalidation.py?token=" + uuid, true);
 | 
						|
        xhr.send();
 | 
						|
      }
 | 
						|
 | 
						|
      function secondRequest() {
 | 
						|
        xhr.onload = test.step_func(function() {
 | 
						|
          assert_equals(xhr.responseText, "PASS: Second OPTIONS request was sent.");
 | 
						|
          test.done();
 | 
						|
        });
 | 
						|
        // Send a header not included in the inital cache.
 | 
						|
        xhr.open("PUT", get_host_info().HTTP_REMOTE_ORIGIN + "/XMLHttpRequest/resources/access-control-basic-preflight-cache-invalidation.py?token=" + uuid, true);
 | 
						|
        xhr.setRequestHeader("x-test", "headerValue");
 | 
						|
        xhr.send();
 | 
						|
      }
 | 
						|
    }, "Preflight cache should be invalidated in presence of custom header");
 | 
						|
    </script>
 | 
						|
  </body>
 | 
						|
</html>
 |