mirror of
https://github.com/jquery/jquery.git
synced 2024-12-09 08:04:24 +00:00
9cb124ed00
So far, we've been testing that jQuery element iteration works with polyfilled Symbol & transpiled for-of via a Node test with jsdom with the Symbol global removed. Unfortunately, jsdom now requires Symbol to be present for its internal functionality so such a test is no longer possible. Instead, it's been migrated to an iframe test with transpiled JavaScript. This PR also enables us to use ECMAScript 2017 or newer in Node.js code. Closes gh-4305
15 lines
467 B
HTML
15 lines
467 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<title>jQuery objects transpiled iterability test page</title>
|
|
<script src="../../../node_modules/core-js/client/core.min.js"></script>
|
|
<script src="../../jquery.js"></script>
|
|
<script src="../iframeTest.js"></script>
|
|
<script src="jquery-iterability-transpiled.js"></script>
|
|
</head>
|
|
<body>
|
|
<p>jQuery objects transpiled iterability test page</p>
|
|
</body>
|
|
</html>
|