forked from bitbonsai/JSHint-Inline
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
39 lines (39 loc) · 1001 Bytes
/
Copy pathtest.html
File metadata and controls
39 lines (39 loc) · 1001 Bytes
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<style>
body {
width: 500px;
}
</style>
<body>
<script>
(function bla (arg) {
'use strict';
var global = arg;
window.alert(global);
})();
</script>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Magni ipsum eos nihil suscipit cum et quas harum illo maxime nostrum iusto sapiente atque enim quod nam repudiandae explicabo ut consequatur!</p>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Ad culpa provident velit repellendus soluta blanditiis sunt cum dolore vitae cupiditate laborum vero. Deleniti neque voluptatum in aliquam saepe consequuntur dolor.</p>
<table>
<tr>
<td>bla</td>
<td>blu</td>
</tr>
</table>
<script>
function testing (bla) {
'use strict';
var a = (bla !== undefined) ? 'this is a wellformed function' : '';
// global = false;
// if (bla) return false;
return a;
}
testing();
</script>
</body>
</html>