⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 101040 in webkit


Ignore:
Timestamp:
Nov 22, 2011, 7:16:00 PM (15 years ago)
Author:
cevans@google.com
Message:

Merge 100203
BUG=105143
Review URL: http://codereview.chromium.org/8673010

Location:
branches/chromium/912
Files:
2 edited
3 copied

Legend:

Unmodified
Added
Removed
  • branches/chromium/912/LayoutTests/editing/pasteboard/drag-drop-dead-frame.html

    r20490 r101040  
    7575<p>Check you don't crash when your previous drag target frame is deleted &lt;rdar://problem/5049842&gt;</p>
    7676<div><span id="dragme">hello</span></div>
    77 <iframe id=targetframe src="data:text/html;charset=utf-8,%3Cbody%20contentEditable%3Dtrue%3E%0D%0A"></iframe>
     77<iframe id=targetframe src="resources/editable-iframe.html"></iframe>
    7878<script>runEditingTest();</script>
    7979</body>
  • branches/chromium/912/Source/WebCore/page/SecurityOrigin.cpp

    r96610 r101040  
    304304{
    305305    if (this == dragInitiator)
    306         return true;
    307 
    308     // FIXME: Currently we treat data URLs as having a unique origin, contrary to the
    309     // current (9/19/2009) draft of the HTML5 specification. We still want to allow
    310     // drop across data URLs, so we special case data URLs below. If we change to
    311     // match HTML5 w.r.t. data URL security, then we can remove this check.
    312     if (m_protocol == "data")
    313306        return true;
    314307
Note: See TracChangeset for help on using the changeset viewer.