forked from mirrors/gecko-dev
		
	MozReview-Commit-ID: DfvN9mAFYhI --HG-- rename : testing/web-platform/tests/conformance-checkers/html-svg/animate-elem-77-t-novalid.html => testing/web-platform/tests/conformance-checkers/html-svg/animate-elem-77-t-isvalid.html rename : testing/web-platform/tests/conformance-checkers/html-svg/linking-a-10-f-novalid.html => testing/web-platform/tests/conformance-checkers/html-svg/linking-a-10-f-isvalid.html rename : testing/web-platform/tests/conformance-checkers/html/elements/picture/srcset-microsyntax-leading-dot-x-novalid.html => testing/web-platform/tests/conformance-checkers/html/elements/picture/srcset-microsyntax-leading-dot-x-valid.html rename : testing/web-platform/tests/content-security-policy/_unapproved/script-nonces-hidden.html.headers => testing/web-platform/tests/content-security-policy/nonce-hiding/script-nonces-hidden.tentative.html.headers rename : testing/web-platform/tests/content-security-policy/_unapproved/svgscript-nonces-hidden.html.headers => testing/web-platform/tests/content-security-policy/nonce-hiding/svgscript-nonces-hidden.tentative.html.headers rename : testing/web-platform/tests/html/semantics/interactive-elements/context-menus/contextmenu-event-manual.htm => testing/web-platform/tests/html/webappapis/scripting/events/contextmenu-event-manual.htm
		
			
				
	
	
		
			20 lines
		
	
	
	
		
			610 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			610 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html>
 | 
						|
  <head>
 | 
						|
    <meta charset="utf-8">
 | 
						|
    <title>WebShare Test: Share with an invalid URL</title>
 | 
						|
    <script src="/resources/testharness.js"></script>
 | 
						|
    <script src="/resources/testharnessreport.js"></script>
 | 
						|
  </head>
 | 
						|
  <body>
 | 
						|
    <script>
 | 
						|
        promise_test(t => {
 | 
						|
          // URL is invalid in that the URL Parser returns failure (port is too
 | 
						|
          // large).
 | 
						|
          const url = 'http://example.com:65536';
 | 
						|
          return promise_rejects(
 | 
						|
              t, new TypeError(), navigator.share({url}));
 | 
						|
        }, 'share with an invalid URL');
 | 
						|
    </script>
 | 
						|
  </body>
 | 
						|
</html>
 |