~ubuntu-branches/ubuntu/oneiric/lightning-extension/oneiric-updates

« back to all changes in this revision

Viewing changes to mozilla/testing/marionette/client/marionette/www/test.html

  • Committer: Package Import Robot
  • Author(s): Chris Coulson
  • Date: 2012-11-08 10:00:06 UTC
  • mfrom: (1.3.8)
  • Revision ID: package-import@ubuntu.com-20121108100006-xpf89hktfitzuqc3
Tags: 1.9+build1-0ubuntu0.11.10.1
* New upstream stable release to support Thunderbird 17 (CALENDAR_1_9_BUILD1)
  - see LP: #1080212 for USN information

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!-- This Source Code Form is subject to the terms of the Mozilla Public
 
2
   - License, v. 2.0. If a copy of the MPL was not distributed with this
 
3
   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
 
4
 
 
5
<!DOCTYPE html>
 
6
<html>
 
7
<head>
 
8
<title>Marionette Test</title>
 
9
</head>
 
10
<body>
 
11
  <h1 id="testh1">Test Page</h1>
 
12
  <script type="text/javascript">
 
13
    window.ready = true;
 
14
    setTimeout(addDelayedElement, 1000);
 
15
    function addDelayedElement() {
 
16
      var newDiv = document.createElement("div");
 
17
      newDiv.id = "newDiv";
 
18
      var newContent = document.createTextNode("I am a newly created div!");
 
19
      newDiv.appendChild(newContent);
 
20
      document.body.appendChild(newDiv);
 
21
    }
 
22
    function clicked() {
 
23
      var link = document.getElementById("mozLink");
 
24
      link.innerHTML = "Clicked";
 
25
    }
 
26
  </script>
 
27
  <a href="#" id="mozLink" class="linkClass" onclick="clicked()">Click me!</a>
 
28
  <div id="testDiv">
 
29
    <a href="#" id="divLink" class="linkClass" onclick="clicked()">Div click me!</a>
 
30
    <a href="#" id="divLink2" class="linkClass" onclick="clicked()">Div click me!</a>
 
31
  </div>
 
32
  <input name="myInput" type="text" value="asdf"/>
 
33
  <input name="myCheckBox" type="checkbox" />
 
34
</body>
 
35
</html>