--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/toolkit/javascript/d3/examples/sizzle/sizzle.html Thu Apr 10 14:20:23 2014 +0200
@@ -0,0 +1,27 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <title>Sizzle</title>
+ <script type="text/javascript" src="../../lib/sizzle/sizzle.js"></script>
+ <script type="text/javascript" src="../../d3.js"></script>
+ <style type="text/css">
+
+body {
+ margin: 2em;
+ text-align: center;
+ font: 300 36px helvetica neue;
+}
+
+ </style>
+ </head>
+ <body>
+ Sizzle.js disabled.
+ <script type="text/javascript">
+
+// The :first pseudo-class is a custom Sizzle extension.
+d3.select("body:first")
+ .html("Sizzle.js enabled!");
+
+ </script>
+ </body>
+</html>