Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(241)

Unified Diff: third_party/WebKit/LayoutTests/fast/performance/performance-first-paint-timing-observable.html

Issue 2860143002: Add tests for paint-timing, and move existing tests to same location (Closed)
Patch Set: add missing image resources Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/performance/performance-paint-timing-observable.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/fast/performance/performance-first-paint-timing-observable.html
diff --git a/third_party/WebKit/LayoutTests/fast/performance/performance-first-paint-timing-observable.html b/third_party/WebKit/LayoutTests/fast/performance/performance-first-paint-timing-observable.html
deleted file mode 100644
index 081aeb32005712254a85941fab742c9930d854c4..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/performance/performance-first-paint-timing-observable.html
+++ /dev/null
@@ -1,34 +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();
- // Nothing contentful to be painted yet.
- assert_equals(entries.length, 1,
- "There should be only first paint timing instance.");
- assert_equals(entries[0].entryType, "paint",
- "Expected entryType to be: paint.");
- assert_equals(entries[0].name, "first-paint",
- "Expected name to be: first-paint.");
- assert_equals(entries[0].duration, 0,
- "Expected duration to be: 0.");
- observer.disconnect();
- t.done();
- })
- );
- observer.observe({entryTypes: ["paint"]});
-
- }, "Performance first paint timing entry is observable.");
- </script>
-
- <div style="background-color:black;color:white;padding:20px;"></div>
-</body>
-</html>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/performance/performance-paint-timing-observable.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698