| Index: third_party/WebKit/LayoutTests/http/tests/navigation/pushstate-in-blob-denied.html | 
| diff --git a/third_party/WebKit/LayoutTests/http/tests/navigation/pushstate-in-blob-denied.html b/third_party/WebKit/LayoutTests/http/tests/navigation/pushstate-in-blob-denied.html | 
| new file mode 100644 | 
| index 0000000000000000000000000000000000000000..c23372a2309536599f275db7153f543077fd4161 | 
| --- /dev/null | 
| +++ b/third_party/WebKit/LayoutTests/http/tests/navigation/pushstate-in-blob-denied.html | 
| @@ -0,0 +1,10 @@ | 
| +<script src="../resources/testharness.js"></script> | 
| +<script src="../resources/testharnessreport.js"></script> | 
| +<script> | 
| +test(function () { | 
| +    var blobUrl = URL.createObjectURL(new Blob()); | 
| +    assert_throws('SecurityError', function () { | 
| +        history.pushState(null, null, blobUrl); | 
| +    }); | 
| +}, 'pushState to blob:-URL should fail with SecurityError'); | 
| +</script> | 
|  |