Changeset 50495 in webkit


Ignore:
Timestamp:
Nov 3, 2009 7:26:29 PM (15 years ago)
Author:
rolandsteiner@chromium.org
Message:

Bug 28420 - Implement HTML5 <ruby> rendering
(https://bugs.webkit.org/show_bug.cgi?id=28420)

Reviewed by Dave Hyatt.

First rudimentary implementation of HTML5 ruby rendering support - layout tests.

New layout tests: basic rendering:

  • fast/ruby/ruby-empty-rt.html: Added.
  • fast/ruby/ruby-length.html: Added.
  • fast/ruby/ruby-run-break.html: Added.
  • fast/ruby/ruby-runs-spans.html: Added.
  • fast/ruby/ruby-runs.html: Added.
  • fast/ruby/ruby-simple-rp.html: Added.
  • fast/ruby/ruby-simple.html: Added.
  • fast/ruby/ruby-trailing.html: Added.


New layout tests: DOM manipulation within <ruby>

  • fast/ruby/rubyDOM-insert-rt.html: Added.
  • fast/ruby/rubyDOM-insert-text1.html: Added.
  • fast/ruby/rubyDOM-insert-text2.html: Added.
  • fast/ruby/rubyDOM-insert-text3.html: Added.
  • fast/ruby/rubyDOM-remove-rt1.html: Added.
  • fast/ruby/rubyDOM-remove-rt2.html: Added.
  • fast/ruby/rubyDOM-remove-text1.html: Added.
  • fast/ruby/rubyDOM-remove-text2.html: Added.


New layout tests results:

  • platform/mac/fast/ruby: Added.
  • platform/mac/fast/ruby/ruby-empty-rt-expected.checksum: Added.
  • platform/mac/fast/ruby/ruby-empty-rt-expected.png: Added.
  • platform/mac/fast/ruby/ruby-empty-rt-expected.txt: Added.
  • platform/mac/fast/ruby/ruby-length-expected.checksum: Added.
  • platform/mac/fast/ruby/ruby-length-expected.png: Added.
  • platform/mac/fast/ruby/ruby-length-expected.txt: Added.
  • platform/mac/fast/ruby/ruby-run-break-expected.checksum: Added.
  • platform/mac/fast/ruby/ruby-run-break-expected.png: Added.
  • platform/mac/fast/ruby/ruby-run-break-expected.txt: Added.
  • platform/mac/fast/ruby/ruby-runs-expected.checksum: Added.
  • platform/mac/fast/ruby/ruby-runs-expected.png: Added.
  • platform/mac/fast/ruby/ruby-runs-expected.txt: Added.
  • platform/mac/fast/ruby/ruby-runs-spans-expected.checksum: Added.
  • platform/mac/fast/ruby/ruby-runs-spans-expected.png: Added.
  • platform/mac/fast/ruby/ruby-runs-spans-expected.txt: Added.
  • platform/mac/fast/ruby/ruby-simple-expected.checksum: Added.
  • platform/mac/fast/ruby/ruby-simple-expected.png: Added.
  • platform/mac/fast/ruby/ruby-simple-expected.txt: Added.
  • platform/mac/fast/ruby/ruby-simple-rp-expected.checksum: Added.
  • platform/mac/fast/ruby/ruby-simple-rp-expected.png: Added.
  • platform/mac/fast/ruby/ruby-simple-rp-expected.txt: Added.
  • platform/mac/fast/ruby/ruby-trailing-expected.checksum: Added.
  • platform/mac/fast/ruby/ruby-trailing-expected.png: Added.
  • platform/mac/fast/ruby/ruby-trailing-expected.txt: Added.
  • platform/mac/fast/ruby/rubyDOM-insert-rt-expected.checksum: Added.
  • platform/mac/fast/ruby/rubyDOM-insert-rt-expected.png: Added.
  • platform/mac/fast/ruby/rubyDOM-insert-rt-expected.txt: Added.
  • platform/mac/fast/ruby/rubyDOM-insert-text1-expected.checksum: Added.
  • platform/mac/fast/ruby/rubyDOM-insert-text1-expected.png: Added.
  • platform/mac/fast/ruby/rubyDOM-insert-text1-expected.txt: Added.
  • platform/mac/fast/ruby/rubyDOM-insert-text2-expected.checksum: Added.
  • platform/mac/fast/ruby/rubyDOM-insert-text2-expected.png: Added.
  • platform/mac/fast/ruby/rubyDOM-insert-text2-expected.txt: Added.
  • platform/mac/fast/ruby/rubyDOM-insert-text3-expected.checksum: Added.
  • platform/mac/fast/ruby/rubyDOM-insert-text3-expected.png: Added.
  • platform/mac/fast/ruby/rubyDOM-insert-text3-expected.txt: Added.
  • platform/mac/fast/ruby/rubyDOM-remove-rt1-expected.checksum: Added.
  • platform/mac/fast/ruby/rubyDOM-remove-rt1-expected.png: Added.
  • platform/mac/fast/ruby/rubyDOM-remove-rt1-expected.txt: Added.
  • platform/mac/fast/ruby/rubyDOM-remove-rt2-expected.checksum: Added.
  • platform/mac/fast/ruby/rubyDOM-remove-rt2-expected.png: Added.
  • platform/mac/fast/ruby/rubyDOM-remove-rt2-expected.txt: Added.
  • platform/mac/fast/ruby/rubyDOM-remove-text1-expected.checksum: Added.
  • platform/mac/fast/ruby/rubyDOM-remove-text1-expected.png: Added.
  • platform/mac/fast/ruby/rubyDOM-remove-text1-expected.txt: Added.
  • platform/mac/fast/ruby/rubyDOM-remove-text2-expected.checksum: Added.
  • platform/mac/fast/ruby/rubyDOM-remove-text2-expected.png: Added.
  • platform/mac/fast/ruby/rubyDOM-remove-text2-expected.txt: Added.
Location:
trunk/LayoutTests
Files:
65 added
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r50492 r50495  
     12009-11-04  Roland Steiner  <rolandsteiner@chromium.org>
     2
     3        Reviewed by Dave Hyatt.
     4
     5        Bug 28420 -  Implement HTML5 <ruby> rendering
     6        (https://bugs.webkit.org/show_bug.cgi?id=28420)
     7
     8        First rudimentary implementation of HTML5 ruby rendering support - layout tests.
     9
     10        New layout tests: basic rendering:
     11        * fast/ruby/ruby-empty-rt.html: Added.
     12        * fast/ruby/ruby-length.html: Added.
     13        * fast/ruby/ruby-run-break.html: Added.
     14        * fast/ruby/ruby-runs-spans.html: Added.
     15        * fast/ruby/ruby-runs.html: Added.
     16        * fast/ruby/ruby-simple-rp.html: Added.
     17        * fast/ruby/ruby-simple.html: Added.
     18        * fast/ruby/ruby-trailing.html: Added.
     19       
     20        New layout tests: DOM manipulation within <ruby>
     21        * fast/ruby/rubyDOM-insert-rt.html: Added.
     22        * fast/ruby/rubyDOM-insert-text1.html: Added.
     23        * fast/ruby/rubyDOM-insert-text2.html: Added.
     24        * fast/ruby/rubyDOM-insert-text3.html: Added.
     25        * fast/ruby/rubyDOM-remove-rt1.html: Added.
     26        * fast/ruby/rubyDOM-remove-rt2.html: Added.
     27        * fast/ruby/rubyDOM-remove-text1.html: Added.
     28        * fast/ruby/rubyDOM-remove-text2.html: Added.
     29       
     30        New layout tests results:
     31        * platform/mac/fast/ruby: Added.
     32        * platform/mac/fast/ruby/ruby-empty-rt-expected.checksum: Added.
     33        * platform/mac/fast/ruby/ruby-empty-rt-expected.png: Added.
     34        * platform/mac/fast/ruby/ruby-empty-rt-expected.txt: Added.
     35        * platform/mac/fast/ruby/ruby-length-expected.checksum: Added.
     36        * platform/mac/fast/ruby/ruby-length-expected.png: Added.
     37        * platform/mac/fast/ruby/ruby-length-expected.txt: Added.
     38        * platform/mac/fast/ruby/ruby-run-break-expected.checksum: Added.
     39        * platform/mac/fast/ruby/ruby-run-break-expected.png: Added.
     40        * platform/mac/fast/ruby/ruby-run-break-expected.txt: Added.
     41        * platform/mac/fast/ruby/ruby-runs-expected.checksum: Added.
     42        * platform/mac/fast/ruby/ruby-runs-expected.png: Added.
     43        * platform/mac/fast/ruby/ruby-runs-expected.txt: Added.
     44        * platform/mac/fast/ruby/ruby-runs-spans-expected.checksum: Added.
     45        * platform/mac/fast/ruby/ruby-runs-spans-expected.png: Added.
     46        * platform/mac/fast/ruby/ruby-runs-spans-expected.txt: Added.
     47        * platform/mac/fast/ruby/ruby-simple-expected.checksum: Added.
     48        * platform/mac/fast/ruby/ruby-simple-expected.png: Added.
     49        * platform/mac/fast/ruby/ruby-simple-expected.txt: Added.
     50        * platform/mac/fast/ruby/ruby-simple-rp-expected.checksum: Added.
     51        * platform/mac/fast/ruby/ruby-simple-rp-expected.png: Added.
     52        * platform/mac/fast/ruby/ruby-simple-rp-expected.txt: Added.
     53        * platform/mac/fast/ruby/ruby-trailing-expected.checksum: Added.
     54        * platform/mac/fast/ruby/ruby-trailing-expected.png: Added.
     55        * platform/mac/fast/ruby/ruby-trailing-expected.txt: Added.
     56        * platform/mac/fast/ruby/rubyDOM-insert-rt-expected.checksum: Added.
     57        * platform/mac/fast/ruby/rubyDOM-insert-rt-expected.png: Added.
     58        * platform/mac/fast/ruby/rubyDOM-insert-rt-expected.txt: Added.
     59        * platform/mac/fast/ruby/rubyDOM-insert-text1-expected.checksum: Added.
     60        * platform/mac/fast/ruby/rubyDOM-insert-text1-expected.png: Added.
     61        * platform/mac/fast/ruby/rubyDOM-insert-text1-expected.txt: Added.
     62        * platform/mac/fast/ruby/rubyDOM-insert-text2-expected.checksum: Added.
     63        * platform/mac/fast/ruby/rubyDOM-insert-text2-expected.png: Added.
     64        * platform/mac/fast/ruby/rubyDOM-insert-text2-expected.txt: Added.
     65        * platform/mac/fast/ruby/rubyDOM-insert-text3-expected.checksum: Added.
     66        * platform/mac/fast/ruby/rubyDOM-insert-text3-expected.png: Added.
     67        * platform/mac/fast/ruby/rubyDOM-insert-text3-expected.txt: Added.
     68        * platform/mac/fast/ruby/rubyDOM-remove-rt1-expected.checksum: Added.
     69        * platform/mac/fast/ruby/rubyDOM-remove-rt1-expected.png: Added.
     70        * platform/mac/fast/ruby/rubyDOM-remove-rt1-expected.txt: Added.
     71        * platform/mac/fast/ruby/rubyDOM-remove-rt2-expected.checksum: Added.
     72        * platform/mac/fast/ruby/rubyDOM-remove-rt2-expected.png: Added.
     73        * platform/mac/fast/ruby/rubyDOM-remove-rt2-expected.txt: Added.
     74        * platform/mac/fast/ruby/rubyDOM-remove-text1-expected.checksum: Added.
     75        * platform/mac/fast/ruby/rubyDOM-remove-text1-expected.png: Added.
     76        * platform/mac/fast/ruby/rubyDOM-remove-text1-expected.txt: Added.
     77        * platform/mac/fast/ruby/rubyDOM-remove-text2-expected.checksum: Added.
     78        * platform/mac/fast/ruby/rubyDOM-remove-text2-expected.png: Added.
     79        * platform/mac/fast/ruby/rubyDOM-remove-text2-expected.txt: Added.
     80
    1812009-11-03  Kenneth Russell  <kbr@google.com>
    282
Note: See TracChangeset for help on using the changeset viewer.