blob: 87fe1d96296c53d453eb3ee6a32f59ff3a04de76 (
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
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
// Tests that properties can be selected and copied from the computed view.
const TEST_URI = `<div style="text-align:left;width:25px;">Hello world</div>`;
add_task(async function () {
await addTab("data:text/html;charset=utf-8," + encodeURIComponent(TEST_URI));
const { inspector, view } = await openComputedView();
await selectNode("div", inspector);
let expectedPattern = "text-align: left;[\\r\\n]+" + "width: 25px;[\\r\\n]*";
await copyAllAndCheckClipboard(view, expectedPattern);
info("Testing expand then select all copy");
expectedPattern =
"text-align: left;[\\r\\n]+" +
"element[\\r\\n]+" +
"Best Match this.style[\\r\\n]+" +
"left[\\r\\n]+" +
"width: 25px;[\\r\\n]+" +
"element[\\r\\n]+" +
"Best Match this.style[\\r\\n]+" +
"25px[\\r\\n]*";
info("Expanding computed view properties");
await expandComputedViewPropertyByIndex(view, 0);
await expandComputedViewPropertyByIndex(view, 1);
await copyAllAndCheckClipboard(view, expectedPattern);
});
|