From 607a4af86037343aca73c1d40cdc9b5860b0a154 Mon Sep 17 00:00:00 2001 From: Ian Gilman Date: Thu, 14 Feb 2013 10:21:07 -0800 Subject: [PATCH] First version of test files --- test/test.css | 4 ++++ test/test.html | 17 +++++++++++++++++ test/test.js | 16 ++++++++++++++++ 3 files changed, 37 insertions(+) create mode 100644 test/test.css create mode 100644 test/test.html create mode 100644 test/test.js diff --git a/test/test.css b/test/test.css new file mode 100644 index 00000000..3815e193 --- /dev/null +++ b/test/test.css @@ -0,0 +1,4 @@ +#example { + height: 500px; + width: 500px; +} diff --git a/test/test.html b/test/test.html new file mode 100644 index 00000000..feb73d22 --- /dev/null +++ b/test/test.html @@ -0,0 +1,17 @@ + + + + + OpenSeadragon QUnit + + + + +
+
+
+ + + + + \ No newline at end of file diff --git a/test/test.js b/test/test.js new file mode 100644 index 00000000..d9da4f47 --- /dev/null +++ b/test/test.js @@ -0,0 +1,16 @@ +test( "hello test", function() { + ok( 1 == "1", "Passed!" ); +}); + +(function() { + + // $(document).ready(function() { + // OpenSeadragon({ + // id: "example", + // prefixUrl: "/images/", + // tileSources: "/test/dzi/dog-and-cat-collars.xml", + // showNavigator: true + // }); + // }); + +})();