Changeset 88228 in webkit


Ignore:
Timestamp:
Jun 7, 2011 1:41:55 AM (13 years ago)
Author:
morrita@google.com
Message:

2011-06-07 MORITA Hajime <morrita@google.com>

Unreviewed, rolling out r88212 and r88219.
http://trac.webkit.org/changeset/88212
http://trac.webkit.org/changeset/88219
https://bugs.webkit.org/show_bug.cgi?id=57439

Tests get timeout on Snow Leopard

  • fast/replaced/no-focus-ring-embed-1-expected.txt: Removed.
  • fast/replaced/no-focus-ring-embed-1.html: Removed.
  • fast/replaced/no-focus-ring-embed-2-expected.txt: Removed.
  • fast/replaced/no-focus-ring-embed-2.html: Removed.
  • fast/replaced/no-focus-ring-iframe-expected.txt: Removed.
  • fast/replaced/no-focus-ring-iframe.html: Removed.
  • fast/replaced/no-focus-ring-object-1-expected.txt: Removed.
  • fast/replaced/no-focus-ring-object-1.html: Removed.
  • fast/replaced/no-focus-ring-object-2-expected.txt: Removed.
  • fast/replaced/no-focus-ring-object-2.html: Removed.
  • fast/replaced/outline-replaced-elements-expected.txt: Removed.
  • fast/replaced/outline-replaced-elements.html: Removed.
  • fast/replaced/resources/focus-test.js: Removed.
  • platform/mac/fast/replaced/outline-replaced-elements-expected.png: Removed.

2011-06-07 MORITA Hajime <morrita@google.com>

Unreviewed, rolling out r88212 and r88219.
http://trac.webkit.org/changeset/88212
http://trac.webkit.org/changeset/88219
https://bugs.webkit.org/show_bug.cgi?id=57439

Tests get timeout at Snow Leopard

  • css/html.css: (html:focus, body:focus, input[readonly]:focus):
  • rendering/RenderWidget.cpp: (WebCore::RenderWidget::paint):
Location:
trunk
Files:
14 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r88227 r88228  
     12011-06-07  MORITA Hajime  <morrita@google.com>
     2
     3        Unreviewed, rolling out r88212 and r88219.
     4        http://trac.webkit.org/changeset/88212
     5        http://trac.webkit.org/changeset/88219
     6        https://bugs.webkit.org/show_bug.cgi?id=57439
     7
     8        Tests get timeout on Snow Leopard
     9
     10        * fast/replaced/no-focus-ring-embed-1-expected.txt: Removed.
     11        * fast/replaced/no-focus-ring-embed-1.html: Removed.
     12        * fast/replaced/no-focus-ring-embed-2-expected.txt: Removed.
     13        * fast/replaced/no-focus-ring-embed-2.html: Removed.
     14        * fast/replaced/no-focus-ring-iframe-expected.txt: Removed.
     15        * fast/replaced/no-focus-ring-iframe.html: Removed.
     16        * fast/replaced/no-focus-ring-object-1-expected.txt: Removed.
     17        * fast/replaced/no-focus-ring-object-1.html: Removed.
     18        * fast/replaced/no-focus-ring-object-2-expected.txt: Removed.
     19        * fast/replaced/no-focus-ring-object-2.html: Removed.
     20        * fast/replaced/outline-replaced-elements-expected.txt: Removed.
     21        * fast/replaced/outline-replaced-elements.html: Removed.
     22        * fast/replaced/resources/focus-test.js: Removed.
     23        * platform/mac/fast/replaced/outline-replaced-elements-expected.png: Removed.
     24
    1252011-06-07  Mario Sanchez Prada  <msanchez@igalia.com>
    226
  • trunk/Source/WebCore/ChangeLog

    r88224 r88228  
     12011-06-07  MORITA Hajime  <morrita@google.com>
     2
     3        Unreviewed, rolling out r88212 and r88219.
     4        http://trac.webkit.org/changeset/88212
     5        http://trac.webkit.org/changeset/88219
     6        https://bugs.webkit.org/show_bug.cgi?id=57439
     7
     8        Tests get timeout at Snow Leopard
     9
     10        * css/html.css:
     11        (html:focus, body:focus, input[readonly]:focus):
     12        * rendering/RenderWidget.cpp:
     13        (WebCore::RenderWidget::paint):
     14
    1152011-06-07  Andras Becsi  <abecsi@webkit.org>
    216
  • trunk/Source/WebCore/css/html.css

    r88212 r88228  
    852852    outline: none
    853853}
    854 
    855 applet:focus, embed:focus, iframe:focus, object:focus {
    856     outline: none
    857 }
    858854 
    859855input:focus, textarea:focus, isindex:focus, keygen:focus, select:focus {
  • trunk/Source/WebCore/rendering/RenderWidget.cpp

    r88212 r88228  
    264264    }
    265265
    266     if ((paintInfo.phase == PaintPhaseOutline || paintInfo.phase == PaintPhaseSelfOutline) && hasOutline())
    267         paintOutline(paintInfo.context, IntRect(tx, ty, width(), height()));
    268 
    269     if (!m_frameView || paintInfo.phase != PaintPhaseForeground)
     266    if (!m_frameView || paintInfo.phase != PaintPhaseForeground || style()->visibility() != VISIBLE)
    270267        return;
    271268
Note: See TracChangeset for help on using the changeset viewer.