[Webkit-unassigned] [Bug 99842] Touch operation corrupts screen when specifying other than overflow:visible in css

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Jan 21 20:34:14 PST 2013


https://bugs.webkit.org/show_bug.cgi?id=99842


Hideki <yoshida-hxa at necst.nec.co.jp> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
 Attachment #183864|0                           |1
        is obsolete|                            |
 Attachment #183864|review?                     |
               Flag|                            |
 Attachment #183879|                            |review?, commit-queue?
               Flag|                            |




--- Comment #7 from Hideki <yoshida-hxa at necst.nec.co.jp>  2013-01-21 20:36:05 PST ---
Created an attachment (id=183879)
 --> (https://bugs.webkit.org/attachment.cgi?id=183879&action=review)
The modified patch to fix buildbot warning

buildbot warns about "RenderLayer::ScrollOffsetClamping::ScrollOffsetClamped"
Here is the message.
 warning C4482: nonstandard extension used: enum 'WebCore::RenderLayer::ScrollOffsetClamping' used in qualified name

C4482 warning is described as following.

// C4482.cpp
// compile with: /c /W1
struct S {
   enum E { a };
};

int i = S::E::a;   // C4482
int j = S::a;   // OK

So I have replaced
 "RenderLayer::ScrollOffsetClamping::ScrollOffsetClamped"
with
 "RenderLayer::ScrollOffsetClamped"

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.


More information about the webkit-unassigned mailing list