~canonical-platform-qa/selenium-simple-test/fix1394741-remote_browser_init

« back to all changes in this revision

Viewing changes to src/testproject/templates/nojs.html

  • Committer: Tarmac
  • Author(s): Corey Goldberg
  • Date: 2013-08-14 14:24:19 UTC
  • mfrom: (432.1.7 no-javascript-disable)
  • Revision ID: tarmac-20130814142419-2yhk1ydb0wa3bkxt
[r=coreygoldberg,elopio] removed the ability to disable javascript

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<html>
2
 
  <head>
3
 
    <title>{{ title }}</title>
4
 
    <link rel="stylesheet" type="text/css" href="./static-files/style.css" />
5
 
  </head>
6
 
  <body>
7
 
    <div id="test">Before JS</div>
8
 
    <script type="text/javascript">
9
 
      var div = document.getElementById('test');
10
 
      div.innerHTML = 'After JS';
11
 
    </script>
12
 
  </body>
13
 
</html>