summaryrefslogtreecommitdiffstats
path: root/devtools/client/styleeditor/test/browser_styleeditor_autocomplete-disabled.js
blob: fd7d4969d0421613a8c638b7d267d345b36fb2be (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
37
38
39
40
41
42
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";

// Test that autocomplete can be disabled.

const TESTCASE_URI = TEST_BASE_HTTP + "autocomplete.html";

// Pref which decides if CSS autocompletion is enabled in Style Editor or not.
const AUTOCOMPLETION_PREF = "devtools.styleeditor.autocompletion-enabled";

add_task(async function () {
  const { ui } = await openStyleEditorForURL(TESTCASE_URI);
  const editor = await ui.editors[0].getSourceEditor();
  editor.sourceEditor.setOption("autocomplete", false);

  is(
    editor.sourceEditor.getOption("autocomplete"),
    false,
    "Autocompletion option does not exist"
  );
  ok(
    !editor.sourceEditor.getAutocompletionPopup(),
    "Autocompletion popup does not exist"
  );
});

add_task(async function () {
  Services.prefs.setBoolPref(AUTOCOMPLETION_PREF, false);
  const { ui } = await openStyleEditorForURL(TESTCASE_URI);
  const editor = await ui.editors[0].getSourceEditor();

  is(
    editor.sourceEditor.getOption("autocomplete"),
    false,
    "Autocompletion option does not exist"
  );
});

registerCleanupFunction(() => {
  Services.prefs.clearUserPref(AUTOCOMPLETION_PREF);
});