Bug 1737775 - [devtools] Add a test for reloading inspector when Shadow DOM node is selected. r=jdescottes.

Differential Revision: https://phabricator.services.mozilla.com/D130174
This commit is contained in:
Nicolas Chevobbe 2021-11-03 07:46:00 +00:00
parent 76037e2166
commit 5381a7fe3d
2 changed files with 62 additions and 0 deletions

View File

@ -212,6 +212,7 @@ skip-if = (os == 'win' && processor == 'aarch64') # bug 1533492
[browser_inspector_reload_iframe.js]
[browser_inspector_reload_invalid_iframe.js]
[browser_inspector_reload_missing-iframe-node.js]
[browser_inspector_reload_shadow_dom.js]
[browser_inspector_reload_xul.js]
[browser_inspector_remove-iframe-during-load.js]
[browser_inspector_search-01.js]

View File

@ -0,0 +1,61 @@
/* 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/. */
"use strict";
// Check that the markup view selection is preserved even if the selection is in shadow-dom.
const HTML = `
<html>
<head>
<meta charset="utf8">
<title>Test</title>
</head>
<body>
<h1>Shadow DOM test</h1>
<test-component>
<div slot="slot1" id="el1">content</div>
</test-component>
<script>
'use strict';
customElements.define('test-component', class extends HTMLElement {
constructor() {
super();
const shadowRoot = this.attachShadow({mode: 'open'});
shadowRoot.innerHTML = '<slot class="slot-class" name="slot1"></slot>';
}
});
</script>
</body>
</html>
`;
const TEST_URI = "data:text/html;charset=utf-8," + encodeURI(HTML);
add_task(async function() {
const { inspector } = await openInspectorForURL(TEST_URI);
info("Select node in shadow DOM");
const nodeFront = await getNodeFrontInShadowDom(
"slot",
"test-component",
inspector
);
await selectNode(nodeFront, inspector);
info("Reloading page.");
await navigateTo(TEST_URI);
const reloadedNodeFront = await getNodeFrontInShadowDom(
"slot",
"test-component",
inspector
);
is(
inspector.selection.nodeFront,
reloadedNodeFront,
"<slot> is selected after reload."
);
});