Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/http/tests/inspector-protocol/network/resources/xhr-iframe-auth-fail.html |
| diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector-protocol/network/resources/xhr-iframe-auth-fail.html b/third_party/WebKit/LayoutTests/http/tests/inspector-protocol/network/resources/xhr-iframe-auth-fail.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..d34f53e1e1a4c4498259fc9d8219f0a261ea8ff3 |
| --- /dev/null |
| +++ b/third_party/WebKit/LayoutTests/http/tests/inspector-protocol/network/resources/xhr-iframe-auth-fail.html |
| @@ -0,0 +1,13 @@ |
| +<!DOCTYPE html> |
| +<html> |
| +<head> |
| +<script> |
| +var xhr = new XMLHttpRequest(); |
| +xhr.onload = function() { |
| + console.log('xhr.status = ' + xhr.status); |
| +}; |
| +xhr.open("GET", "unauthorised.pl"); |
| +xhr.send(); |
| +</script> |
| +</head> |
| +</html> |