1
0
Fork 0
mirror of https://github.com/ganelson/inform.git synced 2024-06-30 22:14:58 +03:00

Bless output of indoc tests for Windows app

The ideal output didn't reflect the recent changes to the JavaScript paste
code. I'm assuming that the current output is correct as-is.

Maybe it makes less sense to have separate tests for Windows and Mac now,
since the HTML is now identical. But the CSS still differs, so I've kept
them for now.
This commit is contained in:
Philip Chimento 2022-04-30 12:42:17 -07:00
parent b2f1029e5b
commit 9d14021b6b
7 changed files with 80 additions and 50 deletions

File diff suppressed because one or more lines are too long

View file

@ -45,6 +45,21 @@
</script>
</head>
<body class="paper papertint">
<script type="text/javascript">
function pasteCode(code) {
var myProject = window.Project;
myProject.selectView('source');
myProject.pasteCode(code);
}
</script>
<script type="text/javascript">
function createNewProject(code, title) {
var myProject = window.Project;
myProject.createNewProject(title, code);
}
</script>
<!--SEARCH TITLE "Tertius"-->
<!--SEARCH SECTION "1.2"-->

File diff suppressed because one or more lines are too long

View file

@ -45,6 +45,21 @@
</script>
</head>
<body class="paper papertint">
<script type="text/javascript">
function pasteCode(code) {
var myProject = window.Project;
myProject.selectView('source');
myProject.pasteCode(code);
}
</script>
<script type="text/javascript">
function createNewProject(code, title) {
var myProject = window.Project;
myProject.createNewProject(title, code);
}
</script>
<!--SEARCH TITLE "Money"-->
<!--SEARCH SECTION "1.2"-->

View file

@ -45,6 +45,21 @@
</script>
</head>
<body class="paper papertint">
<script type="text/javascript">
function pasteCode(code) {
var myProject = window.Project;
myProject.selectView('source');
myProject.pasteCode(code);
}
</script>
<script type="text/javascript">
function createNewProject(code, title) {
var myProject = window.Project;
myProject.createNewProject(title, code);
}
</script>
<!--SEARCH TITLE "Bingley"-->
<!--SEARCH SECTION "2.1"-->

View file

@ -9,8 +9,8 @@ box-sizing: border-box;
/* The body elements always belong to two classes: "paper" and a tint class */
body.paper {
font-size: 112.5%;
font-size: 100%;
line-height: 1.25em;
text-align: left;
overflow-y: scroll;

View file

@ -9,8 +9,8 @@ box-sizing: border-box;
/* The body elements always belong to two classes: "paper" and a tint class */
body.paper {
font-size: 112.5%;
font-size: 100%;
line-height: 1.25em;
text-align: left;
overflow-y: scroll;