summaryrefslogtreecommitdiffstats
path: root/devtools/client/inspector/markup/test/browser_markup_remove_xul_attributes.js
blob: 89ac8441497a026a6069f3a01bdca8bfe50284a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/* Any copyright is dedicated to the Public Domain.
 http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

// Test confirms that XUL attributes don't show up as empty
// attributes after being deleted

const TEST_URL = URL_ROOT_SSL + "doc_markup_xul.xhtml";

add_task(async function () {
  await SpecialPowers.pushPermissions([
    { type: "allowXULXBL", allow: true, context: URL_ROOT_SSL },
  ]);

  const { inspector } = await openInspectorForURL(TEST_URL);

  const panelFront = await getNodeFront("#test", inspector);
  ok(
    panelFront.hasAttribute("id"),
    "panelFront has id attribute in the beginning"
  );

  info("Removing panel's id attribute");
  const onMutation = inspector.once("markupmutation");
  await removeContentPageElementAttribute("#test", "id");

  info("Waiting for markupmutation");
  await onMutation;

  is(
    panelFront.hasAttribute("id"),
    false,
    "panelFront doesn't have id attribute anymore"
  );
});