From 26a029d407be480d791972afb5975cf62c9360a6 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 02:47:55 +0200 Subject: Adding upstream version 124.0.1. Signed-off-by: Daniel Baumann --- .../browser_popupNotification_learnmore.js | 64 ++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 browser/base/content/test/popupNotifications/browser_popupNotification_learnmore.js (limited to 'browser/base/content/test/popupNotifications/browser_popupNotification_learnmore.js') diff --git a/browser/base/content/test/popupNotifications/browser_popupNotification_learnmore.js b/browser/base/content/test/popupNotifications/browser_popupNotification_learnmore.js new file mode 100644 index 0000000000..fc3946598c --- /dev/null +++ b/browser/base/content/test/popupNotifications/browser_popupNotification_learnmore.js @@ -0,0 +1,64 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +function test() { + waitForExplicitFinish(); + + ok(PopupNotifications, "PopupNotifications object exists"); + ok(PopupNotifications.panel, "PopupNotifications panel exists"); + + setup(); +} + +var tests = [ + // Test checkbox being checked by default + { + id: "without_learn_more", + run() { + this.notifyObj = new BasicNotification(this.id); + showNotification(this.notifyObj); + }, + onShown(popup) { + checkPopup(popup, this.notifyObj); + let notification = popup.children[0]; + let link = notification.querySelector( + ".popup-notification-learnmore-link" + ); + ok(!link.href, "no href"); + is( + window.getComputedStyle(link).getPropertyValue("display"), + "none", + "link hidden" + ); + dismissNotification(popup); + }, + onHidden() {}, + }, + + // Test that passing the learnMoreURL field sets up the link. + { + id: "with_learn_more", + run() { + this.notifyObj = new BasicNotification(this.id); + this.notifyObj.options.learnMoreURL = "https://mozilla.org"; + showNotification(this.notifyObj); + }, + onShown(popup) { + checkPopup(popup, this.notifyObj); + let notification = popup.children[0]; + let link = notification.querySelector( + ".popup-notification-learnmore-link" + ); + is(link.textContent, "Learn more", "correct label"); + is(link.href, "https://mozilla.org", "correct href"); + isnot( + window.getComputedStyle(link).getPropertyValue("display"), + "none", + "link not hidden" + ); + dismissNotification(popup); + }, + onHidden() {}, + }, +]; -- cgit v1.2.3