mirror of
https://github.com/zebrajr/react.git
synced 2025-12-06 00:20:04 +01:00
* Added new (failing) suspense+interaction tests * Add new tracing+suspense test harness fixture * Refactored interaction tracing to fix ref counting bug
22 lines
760 B
HTML
22 lines
760 B
HTML
<!DOCTYPE html>
|
|
<html style="width: 100%; height: 100%;">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Test tracing UMD</title>
|
|
<style>
|
|
body {
|
|
font-family: sans-serif;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<!-- Load the tracing API before react to test that it's lazily evaluated -->
|
|
<script src="../../build/node_modules/scheduler/umd/scheduler.development.js"></script>
|
|
<script src="../../build/node_modules/scheduler/umd/scheduler-tracing.development.js"></script>
|
|
<script src="../../build/node_modules/react/umd/react.development.js"></script>
|
|
<script src="../../build/node_modules/react-dom/umd/react-dom.development.js"></script>
|
|
<script src="./test.js"></script>
|
|
</body>
|
|
</html>
|