-
Notifications
You must be signed in to change notification settings - Fork 205
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[de] Move custom xml tests that require ooxml to a separate module
- Loading branch information
1 parent
14fd655
commit aa65aed
Showing
6 changed files
with
427 additions
and
319 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | ||
|
||
<title>Document calculation tests</title> | ||
|
||
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script> | ||
<link type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/qunit/2.16.0/qunit.css" rel="stylesheet" media="screen" /> | ||
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/qunit/2.16.0/qunit.js"></script> | ||
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/xregexp/3.2.0/xregexp-all.min.js"></script> | ||
|
||
<script type="text/javascript" src="../../../develop/sdkjs/word/scripts.js"></script> | ||
<script type="text/javascript"> | ||
window.sdk_scripts.forEach(function(item){ | ||
document.write('<script type="text/javascript" src="' + item + '"><\/script>'); | ||
}); | ||
</script> | ||
|
||
<script type="text/javascript" src="../common/common.js"></script> | ||
<script type="text/javascript" src="../common/editor.js"></script> | ||
<script type="text/javascript" src="../common/document.js"></script> | ||
<script type="text/javascript" src="../common/measurer.js"></script> | ||
|
||
<script type="text/javascript" src="custom-xml-common.js"></script> | ||
<script type="text/javascript" src="custom-xml-ooxml.js"></script> | ||
</head> | ||
<body> | ||
<h1 id="qunit-header">Test forms</h1> | ||
<h2 id="qunit-banner"></h2> | ||
<div id="qunit-testrunner-toolbar"></div> | ||
<h2 id="qunit-userAgent"></h2> | ||
<ol id="qunit-tests"></ol> | ||
<div id="qunit-fixture">test markup, will be hidden</div> | ||
</body> | ||
</html> |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.