Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
/* Any copyright is dedicated to the Public Domain.
"use strict";
// Tests editing SVG styles using the rules view.
var TEST_URL = "chrome://devtools/skin/images/alert.svg";
var TEST_SELECTOR = "path";
add_task(async function () {
await addTab(TEST_URL);
const { inspector, view } = await openRuleView();
await selectNode(TEST_SELECTOR, inspector);
info("Test creating a new property");
await addProperty(view, 0, "fill", "red");
is(
await getComputedStyleProperty(TEST_SELECTOR, null, "fill"),
"rgb(255, 0, 0)",
"The fill was changed to red"
);
});