| Index: third_party/WebKit/LayoutTests/http/tests/performance-timing/paint-timing/observable.html
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/performance-timing/paint-timing/observable.html b/third_party/WebKit/LayoutTests/http/tests/performance-timing/paint-timing/observable.html
|
| deleted file mode 100644
|
| index ad7272486be65ee9caa7afaaca137a7adc126335..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/http/tests/performance-timing/paint-timing/observable.html
|
| +++ /dev/null
|
| @@ -1,54 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<head>
|
| -<title>Performance Paint Timing Test</title>
|
| -</head>
|
| -<body>
|
| - <script src="../../resources/testharness.js"></script>
|
| - <script src="../../resources/testharnessreport.js"></script>
|
| - <script>
|
| -
|
| - async_test(function (t) {
|
| - var observer = new PerformanceObserver(
|
| - t.step_func(function (entryList) {
|
| - var entries = entryList.getEntries();
|
| - assert_equals(entries.length, 2,
|
| - "There should be two paint timing instances.");
|
| - assert_equals(entries[0].entryType, "paint",
|
| - "Expected entryType to be: paint.");
|
| - assert_equals(entries[0].name, "first-paint",
|
| - "Expected entryType to be: paint.");
|
| - assert_equals(entries[0].duration, 0,
|
| - "Expected duration to be: 0.");
|
| -
|
| - assert_equals(entries[1].entryType, "paint",
|
| - "Expected entryType to be: paint.");
|
| - assert_equals(entries[1].name, "first-contentful-paint",
|
| - "Expected entryType to be: paint.");
|
| - assert_equals(entries[1].duration, 0,
|
| - "Expected duration to be: 0.");
|
| - observer.disconnect();
|
| -
|
| - // Check buffer
|
| - bufferedEntries = performance.getEntriesByType('paint');
|
| - assert_equals(bufferedEntries.length, 2,
|
| - "There should be two paint timing instances.");
|
| - assert_equals(bufferedEntries[0].entryType, "paint",
|
| - "Expected entryType to be: paint.");
|
| - assert_equals(bufferedEntries[0].name, "first-paint",
|
| - "Expected entryType to be: paint.");
|
| - assert_equals(bufferedEntries[1].entryType, "paint",
|
| - "Expected entryType to be: paint.");
|
| - assert_equals(bufferedEntries[1].name, "first-contentful-paint",
|
| - "Expected entryType to be: paint.");
|
| -
|
| - t.done();
|
| - })
|
| - );
|
| - observer.observe({entryTypes: ["paint"]});
|
| -
|
| - }, "Both first-paint-timing and first-contentful-paint timing entry are observable.");
|
| -
|
| - </script>
|
| - <div style="background-color:black;color:white;padding:20px;">...test...</div>
|
| -</body>
|
| -</html>
|
|
|