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 --- ...rowser_markup_events_react_production_16.2.0.js | 133 +++++++++++++++++++++ 1 file changed, 133 insertions(+) create mode 100644 devtools/client/inspector/markup/test/browser_markup_events_react_production_16.2.0.js (limited to 'devtools/client/inspector/markup/test/browser_markup_events_react_production_16.2.0.js') diff --git a/devtools/client/inspector/markup/test/browser_markup_events_react_production_16.2.0.js b/devtools/client/inspector/markup/test/browser_markup_events_react_production_16.2.0.js new file mode 100644 index 0000000000..3034330f14 --- /dev/null +++ b/devtools/client/inspector/markup/test/browser_markup_events_react_production_16.2.0.js @@ -0,0 +1,133 @@ +/* Any copyright is dedicated to the Public Domain. + http://creativecommons.org/publicdomain/zero/1.0/ */ +/* import-globals-from helper_events_test_runner.js */ +"use strict"; + +requestLongerTimeout(4); + +// Test that markup view event bubbles show the correct event info for React +// events (React production version 16.2.0) without JSX. + +const TEST_LIB = URL_ROOT_SSL + "lib_react_dom_16.2.0_min.js"; +const TEST_EXTERNAL_LISTENERS = URL_ROOT_SSL + "react_external_listeners.js"; +const TEST_URL = + URL_ROOT_SSL + "doc_markup_events_react_production_16.2.0.html"; + +loadHelperScript("helper_events_test_runner.js"); + +/*eslint-disable */ +const TEST_DATA = [ + { + selector: "#inline", + expected: [ + { + type: "click", + filename: TEST_LIB + ":93:417", + attributes: ["Bubbling"], + handler: `function() {}`, + }, + { + type: "onClick", + filename: TEST_URL + ":21:22", + attributes: ["React", "Bubbling"], + handler: ` + inlineFunction() { + alert("inlineFunction"); + }`, + }, + ], + }, + { + selector: "#external", + expected: [ + { + type: "click", + filename: TEST_LIB + ":93:417", + attributes: ["Bubbling"], + handler: `function() {}`, + }, + { + type: "onClick", + filename: TEST_EXTERNAL_LISTENERS + ":4:25", + attributes: ["React", "Bubbling"], + handler: ` + function externalFunction() { + alert("externalFunction"); + }`, + }, + ], + }, + { + selector: "#externalinline", + expected: [ + { + type: "click", + filename: TEST_LIB + ":93:417", + attributes: ["Bubbling"], + handler: `function() {}`, + }, + { + type: "onClick", + filename: TEST_EXTERNAL_LISTENERS + ":4:25", + attributes: ["React", "Bubbling"], + handler: ` + function externalFunction() { + alert("externalFunction"); + }`, + }, + { + type: "onMouseUp", + filename: TEST_URL + ":21:22", + attributes: ["React", "Bubbling"], + handler: ` + inlineFunction() { + alert("inlineFunction"); + }`, + }, + ], + }, + { + selector: "#externalcapturing", + expected: [ + { + type: "onClickCapture", + filename: TEST_EXTERNAL_LISTENERS + ":8:34", + attributes: ["React", "Capturing"], + handler: ` + function externalCapturingFunction() { + alert("externalCapturingFunction"); + }`, + }, + ], + }, + { + selector: "#doublebind", + expected: [ + { + type: "click", + filename: TEST_LIB + ":93:417", + attributes: ["Bubbling"], + handler: `function() {}`, + }, + { + type: "onClick", + filename: TEST_URL + ":21:22", + attributes: ["React", "Bubbling"], + handler: ` + function() { + alert("inlineFunction"); + }`, + }, + ], + }, +]; +/* eslint-enable */ + +add_task(async function () { + info( + "Switch to 2 pane inspector to avoid sidebar width issues with opening events" + ); + await pushPref("devtools.inspector.three-pane-enabled", false); + await pushPref("devtools.toolsidebar-width.inspector", 350); + await runEventPopupTests(TEST_URL, TEST_DATA); +}); -- cgit v1.2.3