diff options
author | tailor <cygnus@janrain.com> | 2008-03-13 23:42:48 +0000 |
---|---|---|
committer | tailor <cygnus@janrain.com> | 2008-03-13 23:42:48 +0000 |
commit | 93f7f45ddf882c0159b7a753c8432c47042f415b (patch) | |
tree | 28a480a92e459ef810f1af69e6388daab0009310 /Tests | |
parent | 003d4eb98add3385978d4e5720da1b98acb81510 (diff) | |
download | php-openid-93f7f45ddf882c0159b7a753c8432c47042f415b.zip php-openid-93f7f45ddf882c0159b7a753c8432c47042f415b.tar.gz php-openid-93f7f45ddf882c0159b7a753c8432c47042f415b.tar.bz2 |
[project @ Extend Yadis HTML discovery regex to support XHTML-style tags]
Diffstat (limited to 'Tests')
-rw-r--r-- | Tests/Auth/Yadis/data/test1-parsehtml.txt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Tests/Auth/Yadis/data/test1-parsehtml.txt b/Tests/Auth/Yadis/data/test1-parsehtml.txt index b005c25..b8d36ed 100644 --- a/Tests/Auth/Yadis/data/test1-parsehtml.txt +++ b/Tests/Auth/Yadis/data/test1-parsehtml.txt @@ -3,6 +3,14 @@ found <html><head><meta http-equiv="X-XRDS-Location" content="found"></head></html> found +<!-- minimal well-formed success case, xhtml closing, whitespace --> +<html><head><meta http-equiv="X-XRDS-Location" content="found" /></head></html> + +found +<!-- minimal well-formed success case, xhtml closing, no whitespace --> +<html><head><meta http-equiv="X-XRDS-Location" content="found"/></head></html> + +found <!-- minimal success case --> <html><head><meta http-equiv="X-XRDS-Location" content="found"> |