| Index: third_party/WebKit/LayoutTests/http/tests/inspector-protocol/network/resources/xhr-iframe.html
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector-protocol/network/resources/xhr-iframe.html b/third_party/WebKit/LayoutTests/http/tests/inspector-protocol/network/resources/xhr-iframe.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..4dbe0001acfabe3773860f8090c904e3d7f9356e
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/http/tests/inspector-protocol/network/resources/xhr-iframe.html
|
| @@ -0,0 +1,15 @@
|
| +<!DOCTYPE html>
|
| +<html>
|
| +<head>
|
| +<script>
|
| +var xhr = new XMLHttpRequest();
|
| +xhr.onload = function() {
|
| + if (xhr.status == 200) {
|
| + console.log('xhr.responseText = ' + xhr.responseText);
|
| + }
|
| +};
|
| +xhr.open("GET", "example.txt");
|
| +xhr.send();
|
| +</script>
|
| +</head>
|
| +</html>
|
|
|