mirror of
https://github.com/ManchildProductions/UXP-Fixed.git
synced 2026-05-27 20:08:33 +00:00
26 lines
750 B
JavaScript
26 lines
750 B
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
"use strict";
|
|
|
|
// Test that StyleEditorUI.selectStyleSheet selects the correct sheet, line and
|
|
// column.
|
|
|
|
const TESTCASE_URI = TEST_BASE_HTTPS + "simple.html";
|
|
|
|
const LINE_NO = 5;
|
|
const COL_NO = 0;
|
|
|
|
add_task(function* () {
|
|
let { ui } = yield openStyleEditorForURL(TESTCASE_URI);
|
|
let editor = ui.editors[1];
|
|
|
|
info("Selecting style sheet #1.");
|
|
yield ui.selectStyleSheet(editor.styleSheet.href, LINE_NO);
|
|
|
|
is(ui.selectedEditor, ui.editors[1], "Second editor is selected.");
|
|
let {line, ch} = ui.selectedEditor.sourceEditor.getCursor();
|
|
|
|
is(line, LINE_NO, "correct line selected");
|
|
is(ch, COL_NO, "correct column selected");
|
|
});
|