mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-02-06 02:30:56 +00:00
46 lines
1.7 KiB
JavaScript
46 lines
1.7 KiB
JavaScript
/* vim: set ts=2 et sw=2 tw=80: */
|
|
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
"use strict";
|
|
|
|
// Check that pseudo-elements and anonymous nodes are not draggable.
|
|
|
|
const TEST_URL = TEST_URL_ROOT + "doc_markup_dragdrop.html";
|
|
|
|
add_task(function*() {
|
|
Services.prefs.setBoolPref("devtools.inspector.showAllAnonymousContent", true);
|
|
|
|
let {inspector} = yield addTab(TEST_URL).then(openInspector);
|
|
|
|
info("Expanding nodes below #test");
|
|
let parentFront = yield getNodeFront("#test", inspector);
|
|
yield inspector.markup.expandNode(parentFront);
|
|
yield waitForMultipleChildrenUpdates(inspector);
|
|
|
|
info("Getting the ::before pseudo element");
|
|
let parentContainer = yield getContainerForNodeFront(parentFront, inspector);
|
|
let beforePseudo = parentContainer.elt.children[1].firstChild.container;
|
|
parentContainer.elt.scrollIntoView(true);
|
|
|
|
info("Simulate dragging the ::before pseudo element");
|
|
yield simulateNodeDrag(inspector, beforePseudo);
|
|
|
|
ok(!beforePseudo.isDragging, "::before pseudo element isn't dragging");
|
|
|
|
info("Expanding nodes below #anonymousParent");
|
|
let inputFront = yield getNodeFront("#anonymousParent", inspector);
|
|
yield inspector.markup.expandNode(inputFront);
|
|
yield waitForMultipleChildrenUpdates(inspector);
|
|
|
|
info("Getting the anonymous node");
|
|
let inputContainer = yield getContainerForNodeFront(inputFront, inspector);
|
|
let anonymousDiv = inputContainer.elt.children[1].firstChild.container;
|
|
inputContainer.elt.scrollIntoView(true);
|
|
|
|
info("Simulate dragging the anonymous node");
|
|
yield simulateNodeDrag(inspector, anonymousDiv);
|
|
|
|
ok(!anonymousDiv.isDragging, "anonymous node isn't dragging");
|
|
});
|