Changes between Initial Version and Version 1 of Writing Reftests


Ignore:
Timestamp:
Mar 8, 2011 10:08:43 PM (13 years ago)
Author:
hayato@chromium.org
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Writing Reftests

    v1 v1  
     1= Writing Reftests =
     2
     3Reftests is not supported yet in WebKit. Please see https://bugs.webkit.org/show_bug.cgi?id=36065 for the current status.
     4
     5== Current proposal ==
     6
     7 * Reftests use a HTML file ('-expected.html') to represent the expected rendering result instead of statically prepared expected result files, such as '-expected.txt', '-expected.checksum' and '-expected.png'. Let's see the following sample reftest.
     8
     9hello.html
     10
     11{{{
     12<html><head><title>reftest0001</title>
     13<body><strong>Hello!</strong></body>
     14</html>
     15}}}
     16
     17
     18hello-expected.html
     19
     20{{{
     21<html><head><title>reftest0001</title>
     22<body><b>Hello!</b></body>
     23</html>
     24}}}
     25
     26Todo:
     27