Index: third_party/WebKit/LayoutTests/http/tests/inspector/bindings/resources/dynamic-frame.html |
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/bindings/resources/dynamic-frame.html b/third_party/WebKit/LayoutTests/http/tests/inspector/bindings/resources/dynamic-frame.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..05b9c7918965090cb1faf015ceaaa0c4dc790bf3 |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector/bindings/resources/dynamic-frame.html |
@@ -0,0 +1,7 @@ |
+<div>Hi, I'm a frame with dynamic script and stylesheet</div> |
+<script> |
+eval('window.foo = ()=>console.log("foo")\n//# sourceURL=dynamic-script.js'); |
+var style = document.createElement('style'); |
+style.textContent = 'div { color: blue; }\n/*# sourceURL=dynamic-style.css */'; |
+document.body.appendChild(style); |
+</script> |