// some work on style sheets

This commit is contained in:
Kevin Granger
2013-07-18 18:51:24 +02:00
parent 02921dc9d0
commit 0b4512dbcb
1654 changed files with 171753 additions and 294 deletions
@@ -0,0 +1,4 @@
define({
name: 'a'
});
@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html>
<head>
<title>require.js: data-main baseUrl Test</title>
<script type="text/javascript" src="../../doh/runner.js"></script>
<script type="text/javascript" src="../../doh/_browserRunner.js"></script>
<script>
var require = {
baseUrl: "./"
};
</script>
<script type="text/javascript" data-main="src/main" src="../../../require.js"></script>
</head>
<body>
<h1>require.js: data-main baseUrl Test</h1>
<p>Confirm that setting a baseUrl does not mess up the data-main module
ID. More info:
<a href="https://github.com/jrburke/requirejs/issues/325">325</a>.
<p>Check console for messages</p>
</body>
</html>
@@ -0,0 +1,11 @@
define(['a'], function (a) {
doh.register(
"dataMainBaseUrl",
[
function dataMainBaseUrl(t){
t.is("a", a.name);
}
]
);
doh.run();
});
@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html>
<head>
<title>require.js: data-main Test</title>
<script type="text/javascript" src="../doh/runner.js"></script>
<script type="text/javascript" src="../doh/_browserRunner.js"></script>
<script type="text/javascript" data-main="dataMain.js" src="../../require.js"></script>
</head>
<body>
<h1>require.js: data-main Test</h1>
<p>Check console for messages</p>
</body>
</html>
@@ -0,0 +1,16 @@
require({
baseUrl: "../"
},
["require", "simple"],
function(require, simple) {
doh.register(
"dataMain",
[
function dataMain(t){
t.is("blue", simple.color);
}
]
);
doh.run();
}
);
@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html>
<head>
<title>require.js: data-main index Test</title>
<script type="text/javascript" src="../../doh/runner.js"></script>
<script type="text/javascript" src="../../doh/_browserRunner.js"></script>
<script>
var require = {
baseUrl: "./"
};
</script>
<script type="text/javascript" data-main="index.js" src="../../../require.js"></script>
</head>
<body>
<h1>require.js: data-main index Test</h1>
<p>Confirm that a data-main="index.js" with an inline config with a baseUrl
works with a built script that has "index" as the top level define call. More info:
<a href="https://github.com/jrburke/requirejs/issues/303">303</a>.
<p>Check console for messages</p>
</body>
</html>
@@ -0,0 +1,15 @@
define('a', {
name: 'a'
});
define('index', ['a'], function (a) {
doh.register(
"dataMainIndex",
[
function dataMainIndex(t){
t.is("a", a.name);
}
]
);
doh.run();
});