| Index: third_party/WebKit/LayoutTests/intersection-observer/containing-block-warning.html
|
| diff --git a/third_party/WebKit/LayoutTests/intersection-observer/containing-block-warning.html b/third_party/WebKit/LayoutTests/intersection-observer/containing-block-warning.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..6cb8fca37ae1a99d162005ec32fb2502b62ee327
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/intersection-observer/containing-block-warning.html
|
| @@ -0,0 +1,10 @@
|
| +<!DOCTYPE html>
|
| +<div id="root"></div>
|
| +<div id="target"></div>
|
| +<script>
|
| +if (self.testRunner)
|
| + testRunner.dumpAsText();
|
| +var root = document.getElementById("root");
|
| +var target = document.getElementById("target");
|
| +new IntersectionObserver(c => {}, {root: root}).observe(target);
|
| +</script>
|
|
|