mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 09:45:06 +02:00
RequestList cannot be copied or moved, because m_pending_request_queue contains lambdas that store pointers to the original RequestList and completion steps that we don't have a reference to. Fixes a bunch of WPT regressions and imports the ones that work.
16 lines
476 B
HTML
16 lines
476 B
HTML
<!doctype html>
|
|
<meta charset=utf-8>
|
|
<title>IDBCursor.advance()</title>
|
|
<script>
|
|
self.GLOBAL = {
|
|
isWindow: function() { return true; },
|
|
isWorker: function() { return false; },
|
|
isShadowRealm: function() { return false; },
|
|
};
|
|
</script>
|
|
<script src="../resources/testharness.js"></script>
|
|
<script src="../resources/testharnessreport.js"></script>
|
|
<script src="resources/support.js"></script>
|
|
<div id=log></div>
|
|
<script src="../IndexedDB/idbcursor-advance.any.js"></script>
|