|
| 1 | +<!DOCTYPE html> |
| 2 | +<html> |
| 3 | +<head> |
| 4 | + <meta charset=utf-8 /> |
| 5 | + <title>Trusted HTML attribute tests</title> |
| 6 | +</head> |
| 7 | +<body> |
| 8 | +<div id="qunit-fixture"></div> |
| 9 | +<script src="../../dist/jquery.js"></script> |
| 10 | +<script src="iframeTest.js"></script> |
| 11 | +<script> |
| 12 | + var i, input, elem, policy, |
| 13 | + results = []; |
| 14 | + |
| 15 | + function runTests( messagePrefix, getTrustedScriptUrlWrapper ) { |
| 16 | + try { |
| 17 | + elem = jQuery( "<script><\/script>" ) |
| 18 | + .attr( "src", getTrustedScriptUrlWrapper( "trusted-types-attributes.js" ) ); |
| 19 | + elem.appendTo( document.body ); |
| 20 | + |
| 21 | + results.push( { |
| 22 | + actual: elem.attr( "src" ), |
| 23 | + expected: "trusted-types-attributes.js", |
| 24 | + message: messagePrefix + ": script URL properly set" |
| 25 | + } ); |
| 26 | + } catch ( e ) { |
| 27 | + results.push( { |
| 28 | + actual: "error thrown", |
| 29 | + expected: "", |
| 30 | + message: messagePrefix + ": error has been thrown" |
| 31 | + } ); |
| 32 | + } |
| 33 | + } |
| 34 | + |
| 35 | + if ( typeof trustedTypes !== "undefined" ) { |
| 36 | + policy = trustedTypes.createPolicy( "jquery-test-policy", { |
| 37 | + createScriptURL: function( html ) { |
| 38 | + return html; |
| 39 | + } |
| 40 | + } ); |
| 41 | + |
| 42 | + runTests( "TrustedScriptURL", function wrapInTrustedScriptUrl( input ) { |
| 43 | + return policy.createScriptURL( input ); |
| 44 | + } ); |
| 45 | + } else { |
| 46 | + |
| 47 | + // No TrustedScriptURL support so let's at least run tests with object wrappers |
| 48 | + // with a proper `toString` function. See trusted-html.html for more context. |
| 49 | + runTests( "Object wrapper", function( input ) { |
| 50 | + return { |
| 51 | + toString: function toString() { |
| 52 | + return input; |
| 53 | + } |
| 54 | + }; |
| 55 | + } ); |
| 56 | + } |
| 57 | + |
| 58 | + startIframeTest( results ); |
| 59 | +</script> |
| 60 | +</body> |
| 61 | +</html> |
0 commit comments