spec: "preload" attribute of <webview>

This commit is contained in:
Cheng Zhao 2014-11-06 15:23:42 +08:00
parent 217b1afe87
commit 395b0c4224
3 changed files with 19 additions and 0 deletions

1
spec/fixtures/module/preload.js vendored Normal file
View file

@ -0,0 +1 @@
console.log([typeof require, typeof module, typeof process].join(' '));

7
spec/fixtures/pages/e.html vendored Normal file
View file

@ -0,0 +1,7 @@
<html>
<body>
<script type="text/javascript" charset="utf-8">
console.log('Window script is loaded before preload script');
</script>
</body>
</html>