Index: third_party/WebKit/LayoutTests/fast/performance/performance-paint-timing-observable.html |
diff --git a/third_party/WebKit/LayoutTests/fast/performance/performance-paint-timing-observable.html b/third_party/WebKit/LayoutTests/fast/performance/performance-paint-timing-observable.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..f2e8134d2e250ea3b1d56f9a000a7877974133e4 |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/fast/performance/performance-paint-timing-observable.html |
@@ -0,0 +1,36 @@ |
+<!DOCTYPE html> |
+<head> |
+<title>Performance Paint Timing Test</title> |
+</head> |
+<body> |
+ <div style="background-color:black;color:white;padding:20px;">...test...</div> |
+ <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, |
tdresser
2016/12/08 14:54:40
Does the spec require that these are dispatched at
panicker
2016/12/09 00:15:01
I would like to spec this so it's dispatched as it
|
+ "There should be two paint timing instances."); |
+ assert_equals(entries[0].entryType, "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].duration, 0, |
+ "Expected duration to be: 0."); |
+ observer.disconnect(); |
+ t.done(); |
+ }) |
+ ); |
+ observer.observe({entryTypes: ["paint"]}); |
+ |
+ }, "Both first-paint-timing and first-contentful-paint timing entry are observable."); |
+ |
+ </script> |
+</body> |
+</html> |