summaryrefslogtreecommitdiff
path: root/browser/devtools/sourceeditor/test/browser_bug687160_line_api.js
blob: 6eb3c22fe99ffefbe2a2721a61a11f858635e812 (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/* vim: set ts=2 et sw=2 tw=80: */
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

let tempScope = {};
Cu.import("resource:///modules/source-editor.jsm", tempScope);
let SourceEditor = tempScope.SourceEditor;

let testWin;
let editor;

function test()
{
  waitForExplicitFinish();

  const windowUrl = "data:text/xml,<?xml version='1.0'?>" +
    "<window xmlns='http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul'" +
    " title='test for bug 660784' width='600' height='500'><hbox flex='1'/></window>";
  const windowFeatures = "chrome,titlebar,toolbar,centerscreen,resizable,dialog=no";

  testWin = Services.ww.openWindow(null, windowUrl, "_blank", windowFeatures, null);
  testWin.addEventListener("load", function onWindowLoad() {
    testWin.removeEventListener("load", onWindowLoad, false);
    waitForFocus(initEditor, testWin);
  }, false);
}

function initEditor()
{
  let hbox = testWin.document.querySelector("hbox");
  editor = new SourceEditor();
  editor.init(hbox, {}, editorLoaded);
}

function editorLoaded()
{
  let component = Services.prefs.getCharPref(SourceEditor.PREFS.COMPONENT);

  editor.focus();

  editor.setText("line1\nline2\nline3");

  if (component != "textarea") {
    is(editor.getLineCount(), 3, "getLineCount() works");
  }

  editor.setCaretPosition(1);
  is(editor.getCaretOffset(), 6, "setCaretPosition(line) works");

  let pos;
  if (component != "textarea") {
    pos = editor.getCaretPosition();
    ok(pos.line == 1 && pos.col == 0, "getCaretPosition() works");
  }

  editor.setCaretPosition(1, 3);
  is(editor.getCaretOffset(), 9, "setCaretPosition(line, column) works");

  if (component != "textarea") {
    pos = editor.getCaretPosition();
    ok(pos.line == 1 && pos.col == 3, "getCaretPosition() works");
  }

  editor.setCaretPosition(2);
  is(editor.getCaretOffset(), 12, "setCaretLine() works, confirmed");

  if (component != "textarea") {
    pos = editor.getCaretPosition();
    ok(pos.line == 2 && pos.col == 0, "setCaretPosition(line) works, again");
  }

  let offsetLine = editor.getLineAtOffset(0);
  is(offsetLine, 0, "getLineAtOffset() is correct for offset 0");

  let offsetLine = editor.getLineAtOffset(6);
  is(offsetLine, 1, "getLineAtOffset() is correct for offset 6");

  let offsetLine = editor.getLineAtOffset(12);
  is(offsetLine, 2, "getLineAtOffset() is correct for offset 12");

  editor.destroy();

  testWin.close();
  testWin = editor = null;

  waitForFocus(finish, window);
}