summaryrefslogtreecommitdiffstats
path: root/docshell/test/mochitest/test_bug680257.html
blob: 4d5736ac0a9b5642a58df603c7a752b290466243 (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
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=680257
-->
<head>
  <title>Test for Bug 680257</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=680257">Mozilla Bug 680257</a>

<script type="application/javascript">

SimpleTest.waitForExplicitFinish();

var popup = window.open("file_bug680257.html");

var gTestContinuation = null;
function continueAsync() {
  popup.addEventListener("hashchange",
    function(e) { gTestContinuation.next(); }, { once: true });
}

// The popup will call into popupLoaded() once it loads.
function popupLoaded() {
  // runTests() needs to be called from outside popupLoaded's onload handler.
  // Otherwise, the navigations we do in runTests won't create new SHEntries.
  SimpleTest.executeSoon(function() {
    if (!gTestContinuation) {
      gTestContinuation = runTests();
    }
    gTestContinuation.next();
  });
}

function* runTests() {
  checkPopupLinkStyle(false, "Initial");

  popup.location.hash = "a";
  continueAsync();
  yield;
  checkPopupLinkStyle(true, "After setting hash");

  popup.history.back();
  continueAsync();
  yield;

  checkPopupLinkStyle(false, "After going back");

  popup.history.forward();
  continueAsync();
  yield;
  checkPopupLinkStyle(true, "After going forward");

  popup.close();
  SimpleTest.finish();
}

function checkPopupLinkStyle(isTarget, desc) {
  var link = popup.document.getElementById("a");
  var style = popup.getComputedStyle(link);
  var color = style.getPropertyValue("color");

  // Color is red if isTarget, black otherwise.
  if (isTarget) {
    is(color, "rgb(255, 0, 0)", desc);
  } else {
    is(color, "rgb(0, 0, 0)", desc);
  }
}

</script>
</body>
</html>