| Index: chrome/test/data/subresource_filter/frame_with_delayed_script.html
 | 
| diff --git a/chrome/test/data/subresource_filter/frame_with_delayed_script.html b/chrome/test/data/subresource_filter/frame_with_delayed_script.html
 | 
| new file mode 100644
 | 
| index 0000000000000000000000000000000000000000..d7033a31bfd3fd1a4670f71dd16d4eec49077fb3
 | 
| --- /dev/null
 | 
| +++ b/chrome/test/data/subresource_filter/frame_with_delayed_script.html
 | 
| @@ -0,0 +1,15 @@
 | 
| +<html>
 | 
| +  <head>
 | 
| +  <script type="text/javascript">
 | 
| +     function runny() {
 | 
| +          var s = document.createElement("script");
 | 
| +          s.type = "text/javascript"
 | 
| +          s.src = "included_script.js";
 | 
| +          // Makes sure that the test would non-flakily fail if the subresource
 | 
| +          // is allowed to load.
 | 
| +          s.async = false;
 | 
| +          document.head.appendChild(s);
 | 
| +        }
 | 
| +  </script>
 | 
| +  </head>
 | 
| +</html>
 | 
| 
 |