diff options
author | Sebastian Geerken <devnull@localhost> | 2014-12-28 12:04:35 +0100 |
---|---|---|
committer | Sebastian Geerken <devnull@localhost> | 2014-12-28 12:04:35 +0100 |
commit | ecb8be82abafc3c7580cdeed4c8902b44bd06ae5 (patch) | |
tree | e3cd0aafb4a99161fa455195d35b5ee810ec9283 | |
parent | 612bbc9abfe07c041dcb647e748e12c3f4d06c3c (diff) |
Some doc.
-rw-r--r-- | doc/dw-miscellaneous.doc | 12 | ||||
-rw-r--r-- | dw/iterator.hh | 3 |
2 files changed, 14 insertions, 1 deletions
diff --git a/doc/dw-miscellaneous.doc b/doc/dw-miscellaneous.doc index 489819ee..4f47b5a4 100644 --- a/doc/dw-miscellaneous.doc +++ b/doc/dw-miscellaneous.doc @@ -12,6 +12,18 @@ allowed, but the part outside is not visible. **Interrupted drawing:** \ref dw-interrupted-drawing. + +Floats +====== + +**Handling collisions:** The CSS specification allows two strategies +to deal with colliding floats: placing the second float beside or +below the first one. Many other browsers implement the first approach, +while dillo implements the second one, which may cause problems when +the author assumes the first. Example: the "tabs" at the top of every +page at Wikipedia ("Article", "Talk", ...). + + Positioned elements =================== diff --git a/dw/iterator.hh b/dw/iterator.hh index acef26da..686235ed 100644 --- a/dw/iterator.hh +++ b/dw/iterator.hh @@ -264,7 +264,8 @@ public: }; /** - * \brief Some completely different kind of iterator: ... + * \brief Some completely different kind of iterator. See \ref + * dw-interrupted-drawing for details. */ class StackingIteratorStack { |