summaryrefslogtreecommitdiff
path: root/src/HTML5/Traverser.php
diff options
context:
space:
mode:
authorTechnosophos <[email protected]>2013-04-03 18:43:53 -0500
committerTechnosophos <[email protected]>2013-04-03 18:43:53 -0500
commitfab7968face089f31fff8cc1a660ddcf43a777f6 (patch)
treefbd462eb8897cfafcb4dd28187850b3d274afe15 /src/HTML5/Traverser.php
parent4c084245f12b99c1607a25a9e9df3c2b1039cd37 (diff)
The beginnings of a serializer.
Diffstat (limited to 'src/HTML5/Traverser.php')
-rw-r--r--src/HTML5/Traverser.php36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/HTML5/Traverser.php b/src/HTML5/Traverser.php
new file mode 100644
index 0000000..f0771f0
--- /dev/null
+++ b/src/HTML5/Traverser.php
@@ -0,0 +1,36 @@
+<?php
+namespace HTML5;
+
+/**
+ * Traverser for walking a DOM tree.
+ *
+ * This is a concrete traverser designed to convert a DOM tree into an
+ * HTML5 document. It is not intended to be a generic DOMTreeWalker
+ * implementation.
+ */
+class Traverser {
+
+ protected $dom;
+ protected $out;
+
+ /**
+ * Create a traverser.
+ *
+ * @param DOMNode $dom
+ * The document or node to traverse.
+ * @param resource $out
+ * A stream that allows writing. The traverser will output into this
+ * stream.
+ */
+ public function __construct($dom, $out) {
+ $this->dom = $dom;
+ $this->out = $out;
+ }
+
+ /**
+ * Tell the traverser to walk the DOM.
+ */
+ public function walk() {
+ }
+
+}