Source code

Revision control

Copy as Markdown

Other Tools

Test Info: Warnings

/* Any copyright is dedicated to the Public Domain.
"use strict";
// Tests the advanceValidate function from rule-view.js.
const {
advanceValidate,
const { KeyCodes } = require("resource://devtools/client/shared/keycodes.js");
// 1 2 3
// 0123456789012345678901234567890
const sampleInput = '\\symbol "string" url(somewhere)';
function testInsertion(where, result, testName) {
info(testName);
equal(
advanceValidate(KeyCodes.DOM_VK_SEMICOLON, sampleInput, where),
result,
"testing advanceValidate at " + where
);
}
function run_test() {
testInsertion(4, true, "inside a symbol");
testInsertion(1, false, "after a backslash");
testInsertion(8, true, "after whitespace");
testInsertion(11, false, "inside a string");
testInsertion(24, false, "inside a URL");
testInsertion(31, true, "at the end");
}