diff --git a/docs/dev-progress.html b/docs/dev-progress.html
index 2099c0e8..e6ae2eda 100644
--- a/docs/dev-progress.html
+++ b/docs/dev-progress.html
@@ -262,7 +262,7 @@ Mozilla on inside and needs -moz-outline, no IE support.
-Transform, target milestone 1.4 |
+Transform, target milestone 1.6 |
align | CAPTION | Near-equiv style 'caption-side', drop left and right |
IMG | Margin-left and margin-right = auto or parent div |
TABLE |
@@ -283,7 +283,7 @@ Mozilla on inside and needs -moz-outline, no IE support.
A | Turn into ID |
noshade | HR | Boolean, style 'border-style:solid;' |
nowrap | TD, TH | Boolean, style 'white-space:nowrap;' (not compat with IE5) |
-size | HR | Near-equiv 'width', needs px suffix if original was pixels |
+size | HR | Near-equiv 'height', needs px suffix if original was pixels |
src | IMG | Required, insert blank or default img if not set |
start | OL | Poorly supported 'counter-reset', allowed in loose, dropped in strict |
type | LI | Equivalent style 'list-style-type', different allowed values though. (needs testing) |
diff --git a/docs/enduser-utf8.html b/docs/enduser-utf8.html
index d8187c5d..351c44d1 100644
--- a/docs/enduser-utf8.html
+++ b/docs/enduser-utf8.html
@@ -1003,7 +1003,11 @@ when dealing with Unicode text:
-...and always think in bytes, not characters. If you use strpos()
+
Note: this list applies to UTF-8 encoded text only: if you have
+a string that you are 100% sure is ASCII, be my guest and use
+strtolower
(HTML Purifier uses this function.)
+
+Regardless, always think in bytes, not characters. If you use strpos()
to find the position of a character, it will be in bytes, but this
usually won't matter since substr() also operates with byte indices!