Changeset 101040 in webkit
- Timestamp:
- Nov 22, 2011, 7:16:00 PM (15 years ago)
- Location:
- branches/chromium/912
- Files:
-
- 2 edited
- 3 copied
-
LayoutTests/editing/pasteboard/drag-drop-dead-frame.html (modified) (1 diff)
-
LayoutTests/editing/pasteboard/drag-drop-to-data-url-expected.txt (copied) (copied from trunk/LayoutTests/editing/pasteboard/drag-drop-to-data-url-expected.txt )
-
LayoutTests/editing/pasteboard/drag-drop-to-data-url.html (copied) (copied from trunk/LayoutTests/editing/pasteboard/drag-drop-to-data-url.html )
-
LayoutTests/editing/pasteboard/resources/editable-iframe.html (copied) (copied from trunk/LayoutTests/editing/pasteboard/resources/editable-iframe.html )
-
Source/WebCore/page/SecurityOrigin.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/chromium/912/LayoutTests/editing/pasteboard/drag-drop-dead-frame.html
r20490 r101040 75 75 <p>Check you don't crash when your previous drag target frame is deleted <rdar://problem/5049842></p> 76 76 <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> 78 78 <script>runEditingTest();</script> 79 79 </body> -
branches/chromium/912/Source/WebCore/page/SecurityOrigin.cpp
r96610 r101040 304 304 { 305 305 if (this == dragInitiator) 306 return true;307 308 // FIXME: Currently we treat data URLs as having a unique origin, contrary to the309 // current (9/19/2009) draft of the HTML5 specification. We still want to allow310 // drop across data URLs, so we special case data URLs below. If we change to311 // match HTML5 w.r.t. data URL security, then we can remove this check.312 if (m_protocol == "data")313 306 return true; 314 307
Note:
See TracChangeset
for help on using the changeset viewer.