Bug 1385005 - Put toolbarbutton-dropdown-arrow.png on the non-Photon browser_startup_images.js whitelist. r?johannh draft
authorMike Conley <mconley@mozilla.com>
Thu, 27 Jul 2017 13:52:18 -0700
changeset 617068 804c81693ab796b1116d57ae026c1160616f667e
parent 616915 36f95aeb4c77f7cf3b3366583008cd6e4b6b1dba
child 639688 1934cab1e021708da0bcc6095c5e00704b141f51
push id70913
push userbmo:mconley@mozilla.com
push dateThu, 27 Jul 2017 20:53:35 +0000
reviewersjohannh
bugs1385005, 1372689
milestone56.0a1
Bug 1385005 - Put toolbarbutton-dropdown-arrow.png on the non-Photon browser_startup_images.js whitelist. r?johannh This was originally removed from the whitelist when bug 1372689 landed. With Photon enabled, this image doesn't load at all. Instead of trying to debug the non-Photon case, we're whitelisting this again because Photon is going out the door in the next release anyways. MozReview-Commit-ID: DdN38s3oqST
browser/base/content/test/performance/browser_startup_images.js
--- a/browser/base/content/test/performance/browser_startup_images.js
+++ b/browser/base/content/test/performance/browser_startup_images.js
@@ -26,16 +26,23 @@
 const whitelist = [
   // Photon-only entries
   {
     file: "chrome://browser/skin/stop.svg",
     platforms: ["linux", "win", "macosx"],
     photon: true,
   },
 
+  // Non-Photon-only entries
+  {
+    file: "chrome://browser/skin/toolbarbutton-dropdown-arrow.png",
+    platforms: ["linux", "win", "macosx"],
+    photon: false,
+  },
+
   // Shared entries
   {
     file: "chrome://browser/skin/arrow-left.svg",
     platforms: ["linux", "win", "macosx"],
   },
   {
     file: "chrome://browser/skin/arrow-dropdown.svg",
     platforms: ["linux", "win", "macosx"],