Changeset 112760 in webkit


Ignore:
Timestamp:
Mar 30, 2012 6:37:03 PM (12 years ago)
Author:
eric@webkit.org
Message:

Add tests for iframe seamless and support for parsing webkitseamless attribute
https://bugs.webkit.org/show_bug.cgi?id=82795

Reviewed by Adam Barth.

Source/WebCore:

This just adds support for parsing/reflecting the "webkitseamess" attribute.
I'll add the actual CSS, navigation, security, and layout changes in
separate follow-up patches.

Tests: fast/frames/seamless/seamless-basic.html

fast/frames/seamless/seamless-css-cascade.html
fast/frames/seamless/seamless-nested.html
fast/frames/seamless/seamless-sandbox-flag.html

  • html/HTMLAttributeNames.in:
  • html/HTMLIFrameElement.idl:

LayoutTests:

  • fast/frames/seamless/resources/css-cascade-child.html: Added.
  • fast/frames/seamless/resources/nested-seamless.html: Added.
  • fast/frames/seamless/resources/square.html: Added.
  • fast/frames/seamless/seamless-basic-expected.txt: Added.
  • fast/frames/seamless/seamless-basic.html: Added.
  • fast/frames/seamless/seamless-css-cascade-expected.txt: Added.
  • fast/frames/seamless/seamless-css-cascade.html: Added.
  • fast/frames/seamless/seamless-nested-expected.txt: Added.
  • fast/frames/seamless/seamless-nested.html: Added.
  • fast/frames/seamless/seamless-sandbox-flag-expected.txt: Added.
  • fast/frames/seamless/seamless-sandbox-flag.html: Added.
Location:
trunk
Files:
13 added
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r112759 r112760  
     12012-03-30  Eric Seidel  <eric@webkit.org>
     2
     3        Add tests for iframe seamless and support for parsing webkitseamless attribute
     4        https://bugs.webkit.org/show_bug.cgi?id=82795
     5
     6        Reviewed by Adam Barth.
     7
     8        * fast/frames/seamless/resources/css-cascade-child.html: Added.
     9        * fast/frames/seamless/resources/nested-seamless.html: Added.
     10        * fast/frames/seamless/resources/square.html: Added.
     11        * fast/frames/seamless/seamless-basic-expected.txt: Added.
     12        * fast/frames/seamless/seamless-basic.html: Added.
     13        * fast/frames/seamless/seamless-css-cascade-expected.txt: Added.
     14        * fast/frames/seamless/seamless-css-cascade.html: Added.
     15        * fast/frames/seamless/seamless-nested-expected.txt: Added.
     16        * fast/frames/seamless/seamless-nested.html: Added.
     17        * fast/frames/seamless/seamless-sandbox-flag-expected.txt: Added.
     18        * fast/frames/seamless/seamless-sandbox-flag.html: Added.
     19
    1202012-03-30  Dirk Pranke  <dpranke@chromium.org>
    221
  • trunk/Source/WebCore/ChangeLog

    r112758 r112760  
     12012-03-30  Eric Seidel  <eric@webkit.org>
     2
     3        Add tests for iframe seamless and support for parsing webkitseamless attribute
     4        https://bugs.webkit.org/show_bug.cgi?id=82795
     5
     6        Reviewed by Adam Barth.
     7
     8        This just adds support for parsing/reflecting the "webkitseamess" attribute.
     9        I'll add the actual CSS, navigation, security, and layout changes in
     10        separate follow-up patches.
     11
     12        Tests: fast/frames/seamless/seamless-basic.html
     13               fast/frames/seamless/seamless-css-cascade.html
     14               fast/frames/seamless/seamless-nested.html
     15               fast/frames/seamless/seamless-sandbox-flag.html
     16
     17        * html/HTMLAttributeNames.in:
     18        * html/HTMLIFrameElement.idl:
     19
    1202012-03-30  Emil A Eklund  <eae@chromium.org>
    221
  • trunk/Source/WebCore/html/HTMLAttributeNames.in

    r107883 r112760  
    318318webkitallowfullscreen
    319319webkitdirectory
     320webkitseamless
    320321width
    321322wrap
  • trunk/Source/WebCore/html/HTMLIFrameElement.idl

    r108199 r112760  
    3434        attribute [Reflect] DOMString width;
    3535
     36        // FIXME: webkit prefix will be removed when implementation is complete.
     37        attribute [Reflect] boolean webkitseamless;
     38
    3639        // Introduced in DOM Level 2:
    3740        readonly attribute [CheckSecurityForNode] Document contentDocument;
Note: See TracChangeset for help on using the changeset viewer.