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
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			667 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			667 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html>
 | 
						|
  <head>
 | 
						|
    <title>Tests CORS with Access-Control-Allow-Origin header</title>
 | 
						|
    <script src="/resources/testharness.js"></script>
 | 
						|
    <script src="/resources/testharnessreport.js"></script>
 | 
						|
    <script src="/common/get-host-info.sub.js"></script>
 | 
						|
  </head>
 | 
						|
  <body>
 | 
						|
    <script type="text/javascript">
 | 
						|
    test(function() {
 | 
						|
      const xhr = new XMLHttpRequest;
 | 
						|
 | 
						|
      xhr.open("GET", get_host_info().HTTP_REMOTE_ORIGIN + "/XMLHttpRequest/resources/access-control-basic-allow.py", false);
 | 
						|
 | 
						|
      xhr.send();
 | 
						|
 | 
						|
      assert_equals(xhr.responseText, "PASS: Cross-domain access allowed.");
 | 
						|
    }, "Allow basic");
 | 
						|
    </script>
 | 
						|
  </body>
 | 
						|
</html>
 |