From 5cab22bd49df3a0f24f0b6c5c1ef9fe32e2dd651 Mon Sep 17 00:00:00 2001 From: Andrea Diamantini Date: Sun, 17 Jun 2012 10:50:11 +0200 Subject: Moved static html tests to a new dir and added one for fonts CCBUG: 295896 --- src/tests/HTTP_tests.html | 601 ------------------------------ src/tests/charset_ISO_8859_1.html | 12 - src/tests/charset_NULL.html | 11 - src/tests/charset_UTF_8.html | 12 - src/tests/html/HTTP_tests.html | 601 ++++++++++++++++++++++++++++++ src/tests/html/charset_ISO_8859_1.html | 12 + src/tests/html/charset_NULL.html | 11 + src/tests/html/charset_UTF_8.html | 12 + src/tests/html/font_test.html | 24 ++ src/tests/html/link_test.html | 165 ++++++++ src/tests/html/test_with_dark_colors.html | 7 + src/tests/link_test.html | 165 -------- src/tests/test_with_dark_colors.html | 7 - 13 files changed, 832 insertions(+), 808 deletions(-) delete mode 100644 src/tests/HTTP_tests.html delete mode 100644 src/tests/charset_ISO_8859_1.html delete mode 100644 src/tests/charset_NULL.html delete mode 100644 src/tests/charset_UTF_8.html create mode 100644 src/tests/html/HTTP_tests.html create mode 100644 src/tests/html/charset_ISO_8859_1.html create mode 100644 src/tests/html/charset_NULL.html create mode 100644 src/tests/html/charset_UTF_8.html create mode 100644 src/tests/html/font_test.html create mode 100644 src/tests/html/link_test.html create mode 100644 src/tests/html/test_with_dark_colors.html delete mode 100644 src/tests/link_test.html delete mode 100644 src/tests/test_with_dark_colors.html (limited to 'src') diff --git a/src/tests/HTTP_tests.html b/src/tests/HTTP_tests.html deleted file mode 100644 index 7a5ac00d..00000000 --- a/src/tests/HTTP_tests.html +++ /dev/null @@ -1,601 +0,0 @@ - - - - -Test Cases for HTTP Content-Disposition header and RFC 2231/2047 Encoding - - - - - - - -

Test Cases for HTTP Content-Disposition header and RFC 2231/2047 Encoding

- - -

Test Cases

Content-Disposition: Disposition-Type Inline

-

- Various tests relating to the "inline" disposition type, see - Section 2.1 of RFC 2183. -

-

inlonly - [TEST] -

Content-Disposition: inline
- Test Results -
FF3pass
MSIE8pass
Op10pass
Saf4pass
Konqpass
Chromepass

'inline' only

This should be equivalent to not including the header at all.

inlwithasciifilename - [TEST] -

Content-Disposition: inline; filename="foo.html"
- Test Results -
FF3pass - (uses the filename in subsequent 'save' operation) -
MSIE8pass - (filename information not used) -
Op10pass - (filename information not used) -
Saf4pass - (filename information not used) -
Konqpass - (filename information not used) -
Chromepass - (filename information not used) -

- 'inline', specifying a filename of foo.html -

- Some UAs use this filename in a subsequent "save" operation. -

inlwithasciifilenamepdf - [TEST] -

Content-Disposition: inline; filename="foo.pdf"
- Test Results -
FF3pass - (filename information not used) -
MSIE8pass - (filename information not used) -
Op10pass - (filename information not used) -
Saf4pass - (filename information not used) -
Konqpass - (filename information not used) -
Chromepass - (filename information not used) -

- 'inline', specifying a filename of foo.pdf -

- Some UAs use this filename in a subsequent "save" operation. - This variation of the test checks whether whatever handles PDF display - receives the filename information, and acts upon it - (this was tested with the latest Acrobat Reader plugin). -

Content-Disposition: Disposition-Type Attachment

-

- Various tests relating to the "attchment" disposition type, see - Section 2.2 of RFC 2183. -

-

attonly - [TEST] -

Content-Disposition: attachment
- Test Results -
FF3pass
MSIE8pass
Op10pass
Saf4pass
Konqpass
Chromepass

'attachment' only

UA should offer to download the resource.

attonlyucase - [TEST] -

Content-Disposition: ATTACHMENT
- Test Results -
FF3pass
MSIE8pass
Op10pass
Saf4pass
Konqfail
Chromepass

'ATTACHMENT' only

UA should offer to download the resource.

attwithasciifilename - [TEST] -

Content-Disposition: attachment; filename="foo.html"
- Test Results -
FF3pass
MSIE8pass
Op10pass
Saf4pass
Konqpass
Chromepass

- 'attachment', specifying a filename of foo.html -

UA should offer to download the resource as "foo.html".

attwithasciifnescapedchar - [TEST] -

Content-Disposition: attachment; filename="f\oo.html"
- Test Results -
FF3fail - (apparently does not treat the backslash as escape character, replaces it with '_') -
MSIE8fail - (apparently does not treat the backslash as escape character, replaces it with '_') -
Op10pass
Saf4fail - (apparently does not treat the backslash as escape character, replaces it with '-') -
Konqpass
Chromefail - (saves "oo.html" (what's going on here?)) -

- 'attachment', specifying a filename of f\oo.html (the first 'o' being escaped) -

UA should offer to download the resource as "foo.html".

attwithfilenameandextparam - [TEST] -

Content-Disposition: attachment; foo="bar"; filename="foo.html"
- Test Results -
FF3pass
MSIE8pass
Op10pass
Saf4pass
Konqpass
Chromepass

- 'attachment', specifying a filename of foo.html - and an extension parameter "foo" which should be ignored - (see Section 2.8 of RFC 2183.). -

UA should offer to download the resource as "foo.html".

attwithasciifilenameucase - [TEST] -

Content-Disposition: attachment; FILENAME="foo.html"
- Test Results -
FF3pass
MSIE8pass
Op10pass
Saf4pass
Konqfail - (filename parameter is ignored) -
Chromepass

- 'attachment', specifying a filename of foo.html -

UA should offer to download the resource as "foo.html".

attwithasciifilenamenq - [TEST] -

Content-Disposition: attachment; filename=foo.html
- Test Results -
FF3warn - (accepts the unquoted value) -
MSIE8warn - (accepts the unquoted value) -
Op10warn - (accepts the unquoted value) -
Saf4warn - (accepts the unquoted value) -
Konqwarn - (accepts the unquoted value) -
Chromewarn - (accepts the unquoted value) -

- 'attachment', specifying a filename of foo.html, but missing - the quotes. -

This is invalid according to Section 19.5.1 of RFC2616, so UAs should - ignore it.

attwithisofnplain - [TEST] -

Content-Disposition: attachment; filename="foo-ä.html"
- Test Results -
FF3pass
MSIE8pass
Op10pass
Saf4pass
Konqpass
Chromepass

- 'attachment', specifying a filename of foo-ä.html, using plain ISO-8859-1 -

UA should offer to download the resource as "foo-ä.html".

attwithutf8fnplain - [TEST] -

Content-Disposition: attachment; filename="foo-ä.html"
- Test Results -
FF3fail - (decodes as UTF-8) -
MSIE8pass
Op10pass
Saf4pass
Konqpass
Chromefail - (decodes as UTF-8) -

- 'attachment', specifying a filename of foo-ä.html, - which happens to be foo-ä.html using UTF-8 encoding. -

UA should offer to download the resource as "foo-ä.html". - Displaying "foo-ä.html" instead indicates that the UA tried to be smart by detecting - something that happens to look like UTF-8.

attwithfnrawpctenca - [TEST] -

Content-Disposition: attachment; filename="foo-%41.html"
- Test Results -
FF3pass
MSIE8fail - (displays "foo-A.html") -
Op10pass
Saf4pass
Konqpass
Chromefail - (displays "foo-A.html" (see Chrome Issue 118)) -

- 'attachment', specifying a filename of foo-%41.html -

UA should offer to download the resource as "foo-%41.html". - Displaying "foo-A.html" instead would indicate that the UA has attempted - to percent-decode the parameter. -

attwithfnrawpctenclong - [TEST] -

Content-Disposition: attachment; filename="foo-%c3%a4-%e2%82%ac.html"
- Test Results -
FF3pass
MSIE8fail - (displays "foo-ä-€.html") -
Op10pass
Saf4pass
Konqpass
Chromefail - (displays "foo-ä-€.html" (see Chrome Issue 118)) -

- 'attachment', specifying a filename of foo-%c3%a4-%e2%82%ac.html, using raw percent encoded UTF-8 - to represent foo-ä-€.html -

UA should offer to download the resource as "foo-%c3%a4-%e2%82%ac.html". - Displaying "foo-ä-€.html" instead would indicate that the UA has attempted - to percent-decode the parameter (using UTF-8). Displaying something else - would indicate that the UA tried to percent-decode, but used a different encoding. -

attwithasciifilenamews1 - [TEST] -

Content-Disposition: attachment; filename ="foo.html"
- Test Results -
FF3pass
MSIE8pass
Op10pass
Saf4pass
Konqpass
Chromepass

- 'attachment', specifying a filename of foo.html, with one - blank space before the equals character. -

UA should offer to download the resource as "foo.html".

attwithasciifilenamews2 - [TEST] -

Content-Disposition: attachment; filename= "foo.html"
- Test Results -
FF3pass
MSIE8pass
Op10pass
Saf4pass
Konqpass
Chromepass

- 'attachment', specifying a filename of foo.html, with one - blank space after the equals character. -

UA should offer to download the resource as "foo.html".

attfnbrokentoken - [TEST] -

Content-Disposition: attachment; filename=foo[1](2).html
- Test Results -
FF3warn - (accepts the unquoted value) -
MSIE8warn - (accepts the unquoted value) -
Op10warn - (accepts the unquoted value) -
Saf4warn - (accepts the unquoted value) -
Konqwarn - (accepts the unquoted value) -
Chromewarn - (accepts the unquoted value) -

- 'attachment', specifying a filename of foo[1](2).html, but missing - the quotes. Also, "[", "]", "(" and ")" are not allowed in the HTTP token - production. -

This is invalid according to Section 19.5.1 of RFC2616, - so UAs should ignore it.

Content-Disposition: Additional Parameters

-

- Various tests relating to the additional parameters defined in - Section 2 of RFC 2183. -

-

attcdate - [TEST] -

Content-Disposition: attachment; creation-date="Wed, 12 Feb 1997 16:29:51 -0500"
- Test Results -
FF3unsupported - (seems to ignore the parameter) -
MSIE8unsupported - (seems to ignore the parameter) -
Op10unsupported - (seems to ignore the parameter) -
Saf4unsupported - (seems to ignore the parameter) -
Konqunsupported - (seems to ignore the parameter) -
Chromeunsupported - (seems to ignore the parameter) -

'attachment', plus creation-date (see Section 2.4 of RFC 2183)

UA should offer to download the resource. When doing so, - the creation date should be set to 12 Feb 1997.

attmdate - [TEST] -

Content-Disposition: attachment; modification-date="Wed, 12 Feb 1997 16:29:51 -0500"
- Test Results -
FF3unsupported - (seems to ignore the parameter) -
MSIE8unsupported - (seems to ignore the parameter) -
Op10unsupported - (seems to ignore the parameter) -
Saf4unsupported - (seems to ignore the parameter) -
Konqunsupported - (seems to ignore the parameter) -
Chromeunsupported - (seems to ignore the parameter) -

'attachment', plus modification-date (see Section 2.5 of RFC 2183)

UA should offer to download the resource. When doing so, - the modification date should be set to 12 Feb 1997.

Content-Disposition: Disposition-Type Extension

-

- A test checking behavior for disposition type extensions, - which should be treated as "attachment", see - Section 2.8 of RFC 2183. -

-

dispext - [TEST] -

Content-Disposition: foobar
- Test Results -
FF3pass
MSIE8fail (does not treat it as 'attachment')
Op10fail (does not treat it as 'attachment')
Saf4fail (does not treat it as 'attachment')
Konqfail (does not treat it as 'attachment')
Chromepass

'foobar' only

This should be equivalent to using "attachment".

RFC2231 Encoding: Character Sets

-

- Various tests using the parameter value encoding defined - in Section 4 of RFC 2231. -

-

attwithisofn2231iso - [TEST] -

Content-Disposition: attachment; filename*=iso-8859-1''foo-%E4.html
- Test Results -
FF3pass
MSIE8unsupported
Op10pass
Saf4unsupported
Konqunsupported
Chromeunsupported

- 'attachment', specifying a filename of foo-ä.html, using RFC2231 encoded ISO-8859-1 -

UA should offer to download the resource as "foo-ä.html". -

attwithfn2231utf8 - [TEST] -

Content-Disposition: attachment; filename*=UTF-8''foo-%c3%a4-%e2%82%ac.html
- Test Results -
FF3pass
MSIE8unsupported
Op10pass
Saf4unsupported
Konqunsupported
Chromeunsupported

- 'attachment', specifying a filename of foo-ä-€.html, using RFC2231 encoded UTF-8 -

UA should offer to download the resource as "foo-ä-€.html". -

attwithfn2231noc - [TEST] -

Content-Disposition: attachment; filename*=''foo-%c3%a4-%e2%82%ac.html
- Test Results -
FF3warn - (decodes as UTF-8) -
MSIE8unsupported
Op10warn - (decodes as 8bit encoding (ISO-8859-1?)) -
Saf4unsupported
Konqunsupported
Chromeunsupported

- Behavior is undefined in RFC 2231, the charset part is missing, although UTF-8 was used. -

attwithfn2231utf8comp - [TEST] -

Content-Disposition: attachment; filename*=UTF-8''foo-a%cc%88.html
- Test Results -
FF3pass
MSIE8unsupported
Op10warn - (displays "foo-ä.html") -
Saf4unsupported
Konqunsupported
Chromeunsupported

- 'attachment', specifying a filename of foo-ä.html, using RFC2231 encoded UTF-8, but - choosing the decomposed form (lowercase a plus COMBINING DIAERESIS) -- - on a Windows target system, this should be translated to the preferred - Unicode normal form (composed). -

UA should offer to download the resource as "foo-ä.html". -

attwithfn2231utf8-bad - [TEST] -

Content-Disposition: attachment; filename*=iso-8859-1''foo-%c3%a4-%e2%82%ac.html
- Test Results -
FF3fail - (falls back to UTF-8) -
MSIE8unsupported
Op10warn - (displays the raw octet sequence as if it was ISO-8859-1 (which is internally - treated as windows-1252, which does allow %82)) -
Saf4unsupported
Konqunsupported
Chromeunsupported

- 'attachment', specifying a filename of foo-ä-€.html, using RFC2231 encoded UTF-8, but declaring ISO-8859-1 -

- The octet %82 does not represent a valid ISO-8859-1 code point, so - the UA should really ignore the parameter. -

attwithfn2231ws1 - [TEST] -

Content-Disposition: attachment; filename *=UTF-8''foo-%c3%a4.html
- Test Results -
FF3fail - (displays garbage) -
MSIE8unsupported
Op10pass
Saf4unsupported
Konqunsupported
Chromeunsupported

- 'attachment', specifying a filename of foo-ä.html, using RFC2231 encoded UTF-8, with whitespace before "*=" -

- The parameter is invalid, thus should be ignored. -

attwithfn2231ws2 - [TEST] -

Content-Disposition: attachment; filename*= UTF-8''foo-%c3%a4.html
- Test Results -
FF3pass
MSIE8unsupported
Op10pass
Saf4unsupported
Konqunsupported
Chromeunsupported

- 'attachment', specifying a filename of foo-ä.html, using RFC2231 encoded UTF-8, with whitespace after "*=" -

- UA should offer to download the resource as "foo-ä.html". -

attwithfn2231ws3 - [TEST] -

Content-Disposition: attachment; filename* =UTF-8''foo-%c3%a4.html
- Test Results -
FF3pass
MSIE8unsupported
Op10pass
Saf4unsupported
Konqunsupported
Chromeunsupported

- 'attachment', specifying a filename of foo-ä.html, using RFC2231 encoded UTF-8, with whitespace inside "* =" -

- UA should offer to download the resource as "foo-ä.html". -

attwithfn2231quot - [TEST] -

Content-Disposition: attachment; filename*="UTF-8''foo-%c3%a4.html"
- Test Results -
FF3fail - (tries to be helpful by removing the quotes) -
MSIE8unsupported
Op10pass
Saf4unsupported
Konqunsupported
Chromeunsupported

- 'attachment', specifying a filename of foo-ä.html, using RFC2231 encoded UTF-8, with double quotes - around the parameter value. -

- The parameter is invalid, thus should be ignored. -

attwithfn2231encmissing - [TEST] -

Content-Disposition: attachment; filename*=''foo-%c3%a4.html
- Test Results -
FF3fail - (sniffs the encoding as UTF-8) -
MSIE8unsupported
Op10fail - (assumes a default of ISO-8859-1) -
Saf4unsupported
Konqunsupported
Chromeunsupported

- 'attachment', specifying a filename of foo-ä.html, using RFC2231 encoded UTF-8, but - leaving out the charset field. -

- The parameter is invalid, thus should be ignored. -

RFC2231 Encoding: Continuations

-

- Various tests using the parameter value continuation efined - in Section 3 of RFC 2231. -

-

attfncont - [TEST] -

Content-Disposition: attachment; filename*0="foo."; filename*1="html"
- Test Results -
FF3pass
MSIE8unsupported
Op10pass
Saf4unsupported
Konqunsupported
Chromeunsupported

- 'attachment', specifying a filename of foo.html, using RFC2231-style parameter continuations. -

- UA should offer to download the resource as "foo.html". -

attfncontenc - [TEST] -

Content-Disposition: attachment; filename*0*=UTF-8''foo-%c3%a4; filename*1=".html"
- Test Results -
FF3pass
MSIE8unsupported
Op10pass
Saf4unsupported
Konqunsupported
Chromeunsupported

- 'attachment', specifying a filename of foo-ä.html, using both RFC2231-style parameter continuations - and UTF-8 encoding. -

- UA should offer to download the resource as "foo-ä.html". -

attfncontlz - [TEST] -

Content-Disposition: attachment; filename*0="foo"; filename*01="bar"
- Test Results -
FF3warn - (accepts leading zeros) -
MSIE8unsupported
Op10warn - (accepts leading zeros) -
Saf4unsupported
Konqunsupported
Chromeunsupported

- 'attachment', specifying a filename of foo (the parameter filename*01 should be ignored because of the leading zero) -

- UA should offer to download the resource as "foo". -

attfncontnc - [TEST] -

Content-Disposition: attachment; filename*0="foo"; filename*2="bar"
- Test Results -
FF3warn - (accepts gaps) -
MSIE8unsupported
Op10pass
Saf4unsupported
Konqunsupported
Chromeunsupported

- 'attachment', specifying a filename of foo (the parameter filename*2 because there's no filename*1 parameter) -

- UA should offer to download the resource as "foo". -

attfnconts1 - [TEST] -

Content-Disposition: attachment; filename*1="foo."; filename*2="html"
- Test Results -
FF3pass
MSIE8unsupported
Op10pass
Saf4unsupported
Konqunsupported
Chromeunsupported

- 'attachment' (the filename* parameters should be ignored because filename*0 is missing) -

- UA should offer to download, not getting the filename from the header. -

attfncontord - [TEST] -

Content-Disposition: attachment; filename*1="bar"; filename*0="foo"
- Test Results -
FF3fail - (parameters are expected to be ordered) -
MSIE8unsupported
Op10pass
Saf4unsupported
Konqunsupported
Chromeunsupported

- 'attachment', specifying a filename of foobar -

- UA should offer to download the resource as "foobar". -

RFC2231 Encoding: Fallback Behaviour

-

- This tests how the UA behaves when the same parameter name appear - both in traditional and RFC 2231 extended format. -

-

attfnboth - [TEST] -

Content-Disposition: attachment; filename="foo-ae.html"; filename*=UTF-8''foo-%c3%a4.html
- Test Results -
FF3pass - (picks the traditionally encoded value -- the first of both) -
MSIE8pass - (picks the traditionally encoded value -- the first of both) -
Op10pass - (picks the traditionally encoded value -- the first of both) -
Saf4pass - (picks the traditionally encoded value -- the first of both) -
Konqpass - (picks the traditionally encoded value -- the first of both) -
Chromepass - (picks the traditionally encoded value -- the first of both) -

- 'attachment', specifying a filename of foo-ae.html in - the traditional format, and foo-ä.html in RFC2231 format. -

- The behaviour of this undefined. Thus UAs should one of the two values. -

attfnboth2 - [TEST] -

Content-Disposition: attachment; filename*=UTF-8''foo-%c3%a4.html; filename="foo-ae.html"
- Test Results -
FF3pass - (picks the RFC2231 encoded value -- the first of both) -
MSIE8fail - (ignores the parameter (this indicates a parsing bug)) -
Op10pass - (picks the RFC2231 encoded value -- the first of both) -
Saf4pass - (picks the traditionally encoded value -- the one it understands) -
Konqpass - (picks the traditionally encoded value -- the one it understands) -
Chromefail - (ignores the parameter (this indicates a parsing bug)) -

- 'attachment', specifying a filename of foo-ae.html in - the traditional format, and foo-ä.html in RFC2231 format. -

- The behaviour of this undefined. Thus UAs should one of the two values. -

RFC2047 Encoding

-

- These tests RFC 2047 style encoding. -

-

- Note that according to Section 5 of RFC 2047, - this encoding does not apply here: An 'encoded-word' MUST NOT appear within a 'quoted-string'., and - An 'encoded-word' MUST NOT be used in parameter of a MIME - Content-Type or Content-Disposition field, or in any structured - field body except within a 'comment' or 'phrase'. -

-

- Therefore, these tests are only be present in order to check - whether the UA by mistake tries to implement RFC2047. -

-

attrfc2047token - [TEST] -

Content-Disposition: attachment; filename==?ISO-8859-1?Q?foo-=E4.html?=
- Test Results -
FF3fail - (decodes it anyway to "foo-ä.html") -
MSIE8pass - (takes the whole value as filename, but does not decode it (replacing question marks by underscores)) -
Op10fail - (displays garbage ("=.htm")) -
Saf4pass - (takes the whole value as filename, but does not decode it (replacing question marks by underscores)) -
Konqfail - (decodes it anyway to "foo-ä.html") -
Chromefail - (decodes it anyway to "foo-ä.html") -

- Uses RFC 2047 style encoded word. "=" is invalid inside the token - production, so this is invalid. -

attrfc2047quoted - [TEST] -

Content-Disposition: attachment; filename="=?ISO-8859-1?Q?foo-=E4.html?="
- Test Results -
FF3fail - (decodes it anyway to "foo-ä.html") -
MSIE8pass - (takes the whole value as filename, but does not decode it) -
Op10fail - (displays garbage ("=.htm")) -
Saf4pass - (takes the whole value as filename, but does not decode it) -
Konqfail - (decodes it anyway to "foo-ä.html") -
Chromefail - (decodes it anyway to "foo-ä.html") -

- Uses RFC 2047 style encoded word, using the quoted-string production. -

- \ No newline at end of file diff --git a/src/tests/charset_ISO_8859_1.html b/src/tests/charset_ISO_8859_1.html deleted file mode 100644 index 587a8bb5..00000000 --- a/src/tests/charset_ISO_8859_1.html +++ /dev/null @@ -1,12 +0,0 @@ - - - - -Charset ISO-8859-1 - - -CHARSET: ISO 8859 1
-This document contains strange text:
-Chinese text: ??, ?????????
- - diff --git a/src/tests/charset_NULL.html b/src/tests/charset_NULL.html deleted file mode 100644 index 6e5598fa..00000000 --- a/src/tests/charset_NULL.html +++ /dev/null @@ -1,11 +0,0 @@ - - - -Charset NULL - - -CHARSET: NULL
-This document contains strange text:
-Chinese text: ??, ?????????
- - diff --git a/src/tests/charset_UTF_8.html b/src/tests/charset_UTF_8.html deleted file mode 100644 index cc63d0e1..00000000 --- a/src/tests/charset_UTF_8.html +++ /dev/null @@ -1,12 +0,0 @@ - - - - -Charset UTF-8 - - -CHARSET: UTF-8
-This document contains strange text: à è ì ò ù
-Chinese text: 激光, 這兩個字是甚麼意思
- - diff --git a/src/tests/html/HTTP_tests.html b/src/tests/html/HTTP_tests.html new file mode 100644 index 00000000..7a5ac00d --- /dev/null +++ b/src/tests/html/HTTP_tests.html @@ -0,0 +1,601 @@ + + + + +Test Cases for HTTP Content-Disposition header and RFC 2231/2047 Encoding + + + + + + + +

Test Cases for HTTP Content-Disposition header and RFC 2231/2047 Encoding

+ + +

Test Cases

Content-Disposition: Disposition-Type Inline

+

+ Various tests relating to the "inline" disposition type, see + Section 2.1 of RFC 2183. +

+

inlonly + [TEST] +

Content-Disposition: inline
+ Test Results +
FF3pass
MSIE8pass
Op10pass
Saf4pass
Konqpass
Chromepass

'inline' only

This should be equivalent to not including the header at all.

inlwithasciifilename + [TEST] +

Content-Disposition: inline; filename="foo.html"
+ Test Results +
FF3pass + (uses the filename in subsequent 'save' operation) +
MSIE8pass + (filename information not used) +
Op10pass + (filename information not used) +
Saf4pass + (filename information not used) +
Konqpass + (filename information not used) +
Chromepass + (filename information not used) +

+ 'inline', specifying a filename of foo.html +

+ Some UAs use this filename in a subsequent "save" operation. +

inlwithasciifilenamepdf + [TEST] +

Content-Disposition: inline; filename="foo.pdf"
+ Test Results +
FF3pass + (filename information not used) +
MSIE8pass + (filename information not used) +
Op10pass + (filename information not used) +
Saf4pass + (filename information not used) +
Konqpass + (filename information not used) +
Chromepass + (filename information not used) +

+ 'inline', specifying a filename of foo.pdf +

+ Some UAs use this filename in a subsequent "save" operation. + This variation of the test checks whether whatever handles PDF display + receives the filename information, and acts upon it + (this was tested with the latest Acrobat Reader plugin). +

Content-Disposition: Disposition-Type Attachment

+

+ Various tests relating to the "attchment" disposition type, see + Section 2.2 of RFC 2183. +

+

attonly + [TEST] +

Content-Disposition: attachment
+ Test Results +
FF3pass
MSIE8pass
Op10pass
Saf4pass
Konqpass
Chromepass

'attachment' only

UA should offer to download the resource.

attonlyucase + [TEST] +

Content-Disposition: ATTACHMENT
+ Test Results +
FF3pass
MSIE8pass
Op10pass
Saf4pass
Konqfail
Chromepass

'ATTACHMENT' only

UA should offer to download the resource.

attwithasciifilename + [TEST] +

Content-Disposition: attachment; filename="foo.html"
+ Test Results +
FF3pass
MSIE8pass
Op10pass
Saf4pass
Konqpass
Chromepass

+ 'attachment', specifying a filename of foo.html +

UA should offer to download the resource as "foo.html".

attwithasciifnescapedchar + [TEST] +

Content-Disposition: attachment; filename="f\oo.html"
+ Test Results +
FF3fail + (apparently does not treat the backslash as escape character, replaces it with '_') +
MSIE8fail + (apparently does not treat the backslash as escape character, replaces it with '_') +
Op10pass
Saf4fail + (apparently does not treat the backslash as escape character, replaces it with '-') +
Konqpass
Chromefail + (saves "oo.html" (what's going on here?)) +

+ 'attachment', specifying a filename of f\oo.html (the first 'o' being escaped) +

UA should offer to download the resource as "foo.html".

attwithfilenameandextparam + [TEST] +

Content-Disposition: attachment; foo="bar"; filename="foo.html"
+ Test Results +
FF3pass
MSIE8pass
Op10pass
Saf4pass
Konqpass
Chromepass

+ 'attachment', specifying a filename of foo.html + and an extension parameter "foo" which should be ignored + (see Section 2.8 of RFC 2183.). +

UA should offer to download the resource as "foo.html".

attwithasciifilenameucase + [TEST] +

Content-Disposition: attachment; FILENAME="foo.html"
+ Test Results +
FF3pass
MSIE8pass
Op10pass
Saf4pass
Konqfail + (filename parameter is ignored) +
Chromepass

+ 'attachment', specifying a filename of foo.html +

UA should offer to download the resource as "foo.html".

attwithasciifilenamenq + [TEST] +

Content-Disposition: attachment; filename=foo.html
+ Test Results +
FF3warn + (accepts the unquoted value) +
MSIE8warn + (accepts the unquoted value) +
Op10warn + (accepts the unquoted value) +
Saf4warn + (accepts the unquoted value) +
Konqwarn + (accepts the unquoted value) +
Chromewarn + (accepts the unquoted value) +

+ 'attachment', specifying a filename of foo.html, but missing + the quotes. +

This is invalid according to Section 19.5.1 of RFC2616, so UAs should + ignore it.

attwithisofnplain + [TEST] +

Content-Disposition: attachment; filename="foo-ä.html"
+ Test Results +
FF3pass
MSIE8pass
Op10pass
Saf4pass
Konqpass
Chromepass

+ 'attachment', specifying a filename of foo-ä.html, using plain ISO-8859-1 +

UA should offer to download the resource as "foo-ä.html".

attwithutf8fnplain + [TEST] +

Content-Disposition: attachment; filename="foo-ä.html"
+ Test Results +
FF3fail + (decodes as UTF-8) +
MSIE8pass
Op10pass
Saf4pass
Konqpass
Chromefail + (decodes as UTF-8) +

+ 'attachment', specifying a filename of foo-ä.html, + which happens to be foo-ä.html using UTF-8 encoding. +

UA should offer to download the resource as "foo-ä.html". + Displaying "foo-ä.html" instead indicates that the UA tried to be smart by detecting + something that happens to look like UTF-8.

attwithfnrawpctenca + [TEST] +

Content-Disposition: attachment; filename="foo-%41.html"
+ Test Results +
FF3pass
MSIE8fail + (displays "foo-A.html") +
Op10pass
Saf4pass
Konqpass
Chromefail + (displays "foo-A.html" (see Chrome Issue 118)) +

+ 'attachment', specifying a filename of foo-%41.html +

UA should offer to download the resource as "foo-%41.html". + Displaying "foo-A.html" instead would indicate that the UA has attempted + to percent-decode the parameter. +

attwithfnrawpctenclong + [TEST] +

Content-Disposition: attachment; filename="foo-%c3%a4-%e2%82%ac.html"
+ Test Results +
FF3pass
MSIE8fail + (displays "foo-ä-€.html") +
Op10pass
Saf4pass
Konqpass
Chromefail + (displays "foo-ä-€.html" (see Chrome Issue 118)) +

+ 'attachment', specifying a filename of foo-%c3%a4-%e2%82%ac.html, using raw percent encoded UTF-8 + to represent foo-ä-€.html +

UA should offer to download the resource as "foo-%c3%a4-%e2%82%ac.html". + Displaying "foo-ä-€.html" instead would indicate that the UA has attempted + to percent-decode the parameter (using UTF-8). Displaying something else + would indicate that the UA tried to percent-decode, but used a different encoding. +

attwithasciifilenamews1 + [TEST] +

Content-Disposition: attachment; filename ="foo.html"
+ Test Results +
FF3pass
MSIE8pass
Op10pass
Saf4pass
Konqpass
Chromepass

+ 'attachment', specifying a filename of foo.html, with one + blank space before the equals character. +

UA should offer to download the resource as "foo.html".

attwithasciifilenamews2 + [TEST] +

Content-Disposition: attachment; filename= "foo.html"
+ Test Results +
FF3pass
MSIE8pass
Op10pass
Saf4pass
Konqpass
Chromepass

+ 'attachment', specifying a filename of foo.html, with one + blank space after the equals character. +

UA should offer to download the resource as "foo.html".

attfnbrokentoken + [TEST] +

Content-Disposition: attachment; filename=foo[1](2).html
+ Test Results +
FF3warn + (accepts the unquoted value) +
MSIE8warn + (accepts the unquoted value) +
Op10warn + (accepts the unquoted value) +
Saf4warn + (accepts the unquoted value) +
Konqwarn + (accepts the unquoted value) +
Chromewarn + (accepts the unquoted value) +

+ 'attachment', specifying a filename of foo[1](2).html, but missing + the quotes. Also, "[", "]", "(" and ")" are not allowed in the HTTP token + production. +

This is invalid according to Section 19.5.1 of RFC2616, + so UAs should ignore it.

Content-Disposition: Additional Parameters

+

+ Various tests relating to the additional parameters defined in + Section 2 of RFC 2183. +

+

attcdate + [TEST] +

Content-Disposition: attachment; creation-date="Wed, 12 Feb 1997 16:29:51 -0500"
+ Test Results +
FF3unsupported + (seems to ignore the parameter) +
MSIE8unsupported + (seems to ignore the parameter) +
Op10unsupported + (seems to ignore the parameter) +
Saf4unsupported + (seems to ignore the parameter) +
Konqunsupported + (seems to ignore the parameter) +
Chromeunsupported + (seems to ignore the parameter) +

'attachment', plus creation-date (see Section 2.4 of RFC 2183)

UA should offer to download the resource. When doing so, + the creation date should be set to 12 Feb 1997.

attmdate + [TEST] +

Content-Disposition: attachment; modification-date="Wed, 12 Feb 1997 16:29:51 -0500"
+ Test Results +
FF3unsupported + (seems to ignore the parameter) +
MSIE8unsupported + (seems to ignore the parameter) +
Op10unsupported + (seems to ignore the parameter) +
Saf4unsupported + (seems to ignore the parameter) +
Konqunsupported + (seems to ignore the parameter) +
Chromeunsupported + (seems to ignore the parameter) +

'attachment', plus modification-date (see Section 2.5 of RFC 2183)

UA should offer to download the resource. When doing so, + the modification date should be set to 12 Feb 1997.

Content-Disposition: Disposition-Type Extension

+

+ A test checking behavior for disposition type extensions, + which should be treated as "attachment", see + Section 2.8 of RFC 2183. +

+

dispext + [TEST] +

Content-Disposition: foobar
+ Test Results +
FF3pass
MSIE8fail (does not treat it as 'attachment')
Op10fail (does not treat it as 'attachment')
Saf4fail (does not treat it as 'attachment')
Konqfail (does not treat it as 'attachment')
Chromepass

'foobar' only

This should be equivalent to using "attachment".

RFC2231 Encoding: Character Sets

+

+ Various tests using the parameter value encoding defined + in Section 4 of RFC 2231. +

+

attwithisofn2231iso + [TEST] +

Content-Disposition: attachment; filename*=iso-8859-1''foo-%E4.html
+ Test Results +
FF3pass
MSIE8unsupported
Op10pass
Saf4unsupported
Konqunsupported
Chromeunsupported

+ 'attachment', specifying a filename of foo-ä.html, using RFC2231 encoded ISO-8859-1 +

UA should offer to download the resource as "foo-ä.html". +

attwithfn2231utf8 + [TEST] +

Content-Disposition: attachment; filename*=UTF-8''foo-%c3%a4-%e2%82%ac.html
+ Test Results +
FF3pass
MSIE8unsupported
Op10pass
Saf4unsupported
Konqunsupported
Chromeunsupported

+ 'attachment', specifying a filename of foo-ä-€.html, using RFC2231 encoded UTF-8 +

UA should offer to download the resource as "foo-ä-€.html". +

attwithfn2231noc + [TEST] +

Content-Disposition: attachment; filename*=''foo-%c3%a4-%e2%82%ac.html
+ Test Results +
FF3warn + (decodes as UTF-8) +
MSIE8unsupported
Op10warn + (decodes as 8bit encoding (ISO-8859-1?)) +
Saf4unsupported
Konqunsupported
Chromeunsupported

+ Behavior is undefined in RFC 2231, the charset part is missing, although UTF-8 was used. +

attwithfn2231utf8comp + [TEST] +

Content-Disposition: attachment; filename*=UTF-8''foo-a%cc%88.html
+ Test Results +
FF3pass
MSIE8unsupported
Op10warn + (displays "foo-ä.html") +
Saf4unsupported
Konqunsupported
Chromeunsupported

+ 'attachment', specifying a filename of foo-ä.html, using RFC2231 encoded UTF-8, but + choosing the decomposed form (lowercase a plus COMBINING DIAERESIS) -- + on a Windows target system, this should be translated to the preferred + Unicode normal form (composed). +

UA should offer to download the resource as "foo-ä.html". +

attwithfn2231utf8-bad + [TEST] +

Content-Disposition: attachment; filename*=iso-8859-1''foo-%c3%a4-%e2%82%ac.html
+ Test Results +
FF3fail + (falls back to UTF-8) +
MSIE8unsupported
Op10warn + (displays the raw octet sequence as if it was ISO-8859-1 (which is internally + treated as windows-1252, which does allow %82)) +
Saf4unsupported
Konqunsupported
Chromeunsupported

+ 'attachment', specifying a filename of foo-ä-€.html, using RFC2231 encoded UTF-8, but declaring ISO-8859-1 +

+ The octet %82 does not represent a valid ISO-8859-1 code point, so + the UA should really ignore the parameter. +

attwithfn2231ws1 + [TEST] +

Content-Disposition: attachment; filename *=UTF-8''foo-%c3%a4.html
+ Test Results +
FF3fail + (displays garbage) +
MSIE8unsupported
Op10pass
Saf4unsupported
Konqunsupported
Chromeunsupported

+ 'attachment', specifying a filename of foo-ä.html, using RFC2231 encoded UTF-8, with whitespace before "*=" +

+ The parameter is invalid, thus should be ignored. +

attwithfn2231ws2 + [TEST] +

Content-Disposition: attachment; filename*= UTF-8''foo-%c3%a4.html
+ Test Results +
FF3pass
MSIE8unsupported
Op10pass
Saf4unsupported
Konqunsupported
Chromeunsupported

+ 'attachment', specifying a filename of foo-ä.html, using RFC2231 encoded UTF-8, with whitespace after "*=" +

+ UA should offer to download the resource as "foo-ä.html". +

attwithfn2231ws3 + [TEST] +

Content-Disposition: attachment; filename* =UTF-8''foo-%c3%a4.html
+ Test Results +
FF3pass
MSIE8unsupported
Op10pass
Saf4unsupported
Konqunsupported
Chromeunsupported

+ 'attachment', specifying a filename of foo-ä.html, using RFC2231 encoded UTF-8, with whitespace inside "* =" +

+ UA should offer to download the resource as "foo-ä.html". +

attwithfn2231quot + [TEST] +

Content-Disposition: attachment; filename*="UTF-8''foo-%c3%a4.html"
+ Test Results +
FF3fail + (tries to be helpful by removing the quotes) +
MSIE8unsupported
Op10pass
Saf4unsupported
Konqunsupported
Chromeunsupported

+ 'attachment', specifying a filename of foo-ä.html, using RFC2231 encoded UTF-8, with double quotes + around the parameter value. +

+ The parameter is invalid, thus should be ignored. +

attwithfn2231encmissing + [TEST] +

Content-Disposition: attachment; filename*=''foo-%c3%a4.html
+ Test Results +
FF3fail + (sniffs the encoding as UTF-8) +
MSIE8unsupported
Op10fail + (assumes a default of ISO-8859-1) +
Saf4unsupported
Konqunsupported
Chromeunsupported

+ 'attachment', specifying a filename of foo-ä.html, using RFC2231 encoded UTF-8, but + leaving out the charset field. +

+ The parameter is invalid, thus should be ignored. +

RFC2231 Encoding: Continuations

+

+ Various tests using the parameter value continuation efined + in Section 3 of RFC 2231. +

+

attfncont + [TEST] +

Content-Disposition: attachment; filename*0="foo."; filename*1="html"
+ Test Results +
FF3pass
MSIE8unsupported
Op10pass
Saf4unsupported
Konqunsupported
Chromeunsupported

+ 'attachment', specifying a filename of foo.html, using RFC2231-style parameter continuations. +

+ UA should offer to download the resource as "foo.html". +

attfncontenc + [TEST] +

Content-Disposition: attachment; filename*0*=UTF-8''foo-%c3%a4; filename*1=".html"
+ Test Results +
FF3pass
MSIE8unsupported
Op10pass
Saf4unsupported
Konqunsupported
Chromeunsupported

+ 'attachment', specifying a filename of foo-ä.html, using both RFC2231-style parameter continuations + and UTF-8 encoding. +

+ UA should offer to download the resource as "foo-ä.html". +

attfncontlz + [TEST] +

Content-Disposition: attachment; filename*0="foo"; filename*01="bar"
+ Test Results +
FF3warn + (accepts leading zeros) +
MSIE8unsupported
Op10warn + (accepts leading zeros) +
Saf4unsupported
Konqunsupported
Chromeunsupported

+ 'attachment', specifying a filename of foo (the parameter filename*01 should be ignored because of the leading zero) +

+ UA should offer to download the resource as "foo". +

attfncontnc + [TEST] +

Content-Disposition: attachment; filename*0="foo"; filename*2="bar"
+ Test Results +
FF3warn + (accepts gaps) +
MSIE8unsupported
Op10pass
Saf4unsupported
Konqunsupported
Chromeunsupported

+ 'attachment', specifying a filename of foo (the parameter filename*2 because there's no filename*1 parameter) +

+ UA should offer to download the resource as "foo". +

attfnconts1 + [TEST] +

Content-Disposition: attachment; filename*1="foo."; filename*2="html"
+ Test Results +
FF3pass
MSIE8unsupported
Op10pass
Saf4unsupported
Konqunsupported
Chromeunsupported

+ 'attachment' (the filename* parameters should be ignored because filename*0 is missing) +

+ UA should offer to download, not getting the filename from the header. +

attfncontord + [TEST] +

Content-Disposition: attachment; filename*1="bar"; filename*0="foo"
+ Test Results +
FF3fail + (parameters are expected to be ordered) +
MSIE8unsupported
Op10pass
Saf4unsupported
Konqunsupported
Chromeunsupported

+ 'attachment', specifying a filename of foobar +

+ UA should offer to download the resource as "foobar". +

RFC2231 Encoding: Fallback Behaviour

+

+ This tests how the UA behaves when the same parameter name appear + both in traditional and RFC 2231 extended format. +

+

attfnboth + [TEST] +

Content-Disposition: attachment; filename="foo-ae.html"; filename*=UTF-8''foo-%c3%a4.html
+ Test Results +
FF3pass + (picks the traditionally encoded value -- the first of both) +
MSIE8pass + (picks the traditionally encoded value -- the first of both) +
Op10pass + (picks the traditionally encoded value -- the first of both) +
Saf4pass + (picks the traditionally encoded value -- the first of both) +
Konqpass + (picks the traditionally encoded value -- the first of both) +
Chromepass + (picks the traditionally encoded value -- the first of both) +

+ 'attachment', specifying a filename of foo-ae.html in + the traditional format, and foo-ä.html in RFC2231 format. +

+ The behaviour of this undefined. Thus UAs should one of the two values. +

attfnboth2 + [TEST] +

Content-Disposition: attachment; filename*=UTF-8''foo-%c3%a4.html; filename="foo-ae.html"
+ Test Results +
FF3pass + (picks the RFC2231 encoded value -- the first of both) +
MSIE8fail + (ignores the parameter (this indicates a parsing bug)) +
Op10pass + (picks the RFC2231 encoded value -- the first of both) +
Saf4pass + (picks the traditionally encoded value -- the one it understands) +
Konqpass + (picks the traditionally encoded value -- the one it understands) +
Chromefail + (ignores the parameter (this indicates a parsing bug)) +

+ 'attachment', specifying a filename of foo-ae.html in + the traditional format, and foo-ä.html in RFC2231 format. +

+ The behaviour of this undefined. Thus UAs should one of the two values. +

RFC2047 Encoding

+

+ These tests RFC 2047 style encoding. +

+

+ Note that according to Section 5 of RFC 2047, + this encoding does not apply here: An 'encoded-word' MUST NOT appear within a 'quoted-string'., and + An 'encoded-word' MUST NOT be used in parameter of a MIME + Content-Type or Content-Disposition field, or in any structured + field body except within a 'comment' or 'phrase'. +

+

+ Therefore, these tests are only be present in order to check + whether the UA by mistake tries to implement RFC2047. +

+

attrfc2047token + [TEST] +

Content-Disposition: attachment; filename==?ISO-8859-1?Q?foo-=E4.html?=
+ Test Results +
FF3fail + (decodes it anyway to "foo-ä.html") +
MSIE8pass + (takes the whole value as filename, but does not decode it (replacing question marks by underscores)) +
Op10fail + (displays garbage ("=.htm")) +
Saf4pass + (takes the whole value as filename, but does not decode it (replacing question marks by underscores)) +
Konqfail + (decodes it anyway to "foo-ä.html") +
Chromefail + (decodes it anyway to "foo-ä.html") +

+ Uses RFC 2047 style encoded word. "=" is invalid inside the token + production, so this is invalid. +

attrfc2047quoted + [TEST] +

Content-Disposition: attachment; filename="=?ISO-8859-1?Q?foo-=E4.html?="
+ Test Results +
FF3fail + (decodes it anyway to "foo-ä.html") +
MSIE8pass + (takes the whole value as filename, but does not decode it) +
Op10fail + (displays garbage ("=.htm")) +
Saf4pass + (takes the whole value as filename, but does not decode it) +
Konqfail + (decodes it anyway to "foo-ä.html") +
Chromefail + (decodes it anyway to "foo-ä.html") +

+ Uses RFC 2047 style encoded word, using the quoted-string production. +

+ \ No newline at end of file diff --git a/src/tests/html/charset_ISO_8859_1.html b/src/tests/html/charset_ISO_8859_1.html new file mode 100644 index 00000000..587a8bb5 --- /dev/null +++ b/src/tests/html/charset_ISO_8859_1.html @@ -0,0 +1,12 @@ + + + + +Charset ISO-8859-1 + + +CHARSET: ISO 8859 1
+This document contains strange text:
+Chinese text: ??, ?????????
+ + diff --git a/src/tests/html/charset_NULL.html b/src/tests/html/charset_NULL.html new file mode 100644 index 00000000..6e5598fa --- /dev/null +++ b/src/tests/html/charset_NULL.html @@ -0,0 +1,11 @@ + + + +Charset NULL + + +CHARSET: NULL
+This document contains strange text:
+Chinese text: ??, ?????????
+ + diff --git a/src/tests/html/charset_UTF_8.html b/src/tests/html/charset_UTF_8.html new file mode 100644 index 00000000..cc63d0e1 --- /dev/null +++ b/src/tests/html/charset_UTF_8.html @@ -0,0 +1,12 @@ + + + + +Charset UTF-8 + + +CHARSET: UTF-8
+This document contains strange text: à è ì ò ù
+Chinese text: 激光, 這兩個字是甚麼意思
+ + diff --git a/src/tests/html/font_test.html b/src/tests/html/font_test.html new file mode 100644 index 00000000..2e889ea8 --- /dev/null +++ b/src/tests/html/font_test.html @@ -0,0 +1,24 @@ + + + + + + + +

+This should be Dejavu Sans. +

+ +

+This should be Dejavu Sans Mono. +

+ +

+This should be Dejavu Serif. +

+ + + + + + diff --git a/src/tests/html/link_test.html b/src/tests/html/link_test.html new file mode 100644 index 00000000..8798f3bc --- /dev/null +++ b/src/tests/html/link_test.html @@ -0,0 +1,165 @@ + + + +link tests + + + + +

Usual Link Tests

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
URLDescriptionlink_blank link
file:///homeJust a simple local urllinklink
gg:ciaoKDE shortcutlinklink
ftp://ftp.eutelia.it/FTP test linklinklink
http://kde-apps.orgkde apps let us test css, javascript, adblock, etc..linklink
http://pcimpact.comPCImpact, a link to test adblocklinklink
http://www.redhat.com/magazine/015jan06/features/valgrind/Sporadic crashes here :(linklink
http://upg.de/Doesn't work :(linklink
http://shop.upg.de/The link the previous should open :(linklink
https://launchpad.net/Test https linklinklink
https://koesterreich.de/rekonq-testSSL test linklinklink
http://www.packtpub.com/article/developing-the-joomla-comSome Crashes here :(linklink
http://jamendo.comBug 214321 (CSS hover popups)linklink
http://npaste.de/4hWebKit problem with pre taglinklink
http://wiki.ubuntuusers.de/BfilterSome crashes signaled here (it works here!)linklink
http://service.futuremark.com/peacekeeper/index.actionrekonq 0.3 + Qt 4.6 seems crash here :(linklink
http://reddit.comBug 216738, difficult adding comments.linklink
http://www.osnews.comAdBlock related problemlinklink
http://ads.cnn.com/Again, adblock problem :(linklink
http://ja.wikipedia.org/wiki/特別:最近の更新KGet import links with particular encodinglink
linklink
+ + + + + diff --git a/src/tests/html/test_with_dark_colors.html b/src/tests/html/test_with_dark_colors.html new file mode 100644 index 00000000..8bb20d74 --- /dev/null +++ b/src/tests/html/test_with_dark_colors.html @@ -0,0 +1,7 @@ + + + +

Hello World!

+

No colours are set (text or background). This is not legible +with a dark colour scheme in KDE.

+ \ No newline at end of file diff --git a/src/tests/link_test.html b/src/tests/link_test.html deleted file mode 100644 index 8798f3bc..00000000 --- a/src/tests/link_test.html +++ /dev/null @@ -1,165 +0,0 @@ - - - -link tests - - - - -

Usual Link Tests

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
URLDescriptionlink_blank link
file:///homeJust a simple local urllinklink
gg:ciaoKDE shortcutlinklink
ftp://ftp.eutelia.it/FTP test linklinklink
http://kde-apps.orgkde apps let us test css, javascript, adblock, etc..linklink
http://pcimpact.comPCImpact, a link to test adblocklinklink
http://www.redhat.com/magazine/015jan06/features/valgrind/Sporadic crashes here :(linklink
http://upg.de/Doesn't work :(linklink
http://shop.upg.de/The link the previous should open :(linklink
https://launchpad.net/Test https linklinklink
https://koesterreich.de/rekonq-testSSL test linklinklink
http://www.packtpub.com/article/developing-the-joomla-comSome Crashes here :(linklink
http://jamendo.comBug 214321 (CSS hover popups)linklink
http://npaste.de/4hWebKit problem with pre taglinklink
http://wiki.ubuntuusers.de/BfilterSome crashes signaled here (it works here!)linklink
http://service.futuremark.com/peacekeeper/index.actionrekonq 0.3 + Qt 4.6 seems crash here :(linklink
http://reddit.comBug 216738, difficult adding comments.linklink
http://www.osnews.comAdBlock related problemlinklink
http://ads.cnn.com/Again, adblock problem :(linklink
http://ja.wikipedia.org/wiki/特別:最近の更新KGet import links with particular encodinglink
linklink
- - - - - diff --git a/src/tests/test_with_dark_colors.html b/src/tests/test_with_dark_colors.html deleted file mode 100644 index 8bb20d74..00000000 --- a/src/tests/test_with_dark_colors.html +++ /dev/null @@ -1,7 +0,0 @@ - - - -

Hello World!

-

No colours are set (text or background). This is not legible -with a dark colour scheme in KDE.

- \ No newline at end of file -- cgit v1.2.1