2016-08-11 11:45:45 -07:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
2016-11-23 11:12:51 -08:00
|
|
|
<title>%s</title>
|
2016-08-11 11:45:45 -07:00
|
|
|
<script src="gentest.js"></script>
|
2016-10-23 10:27:30 -07:00
|
|
|
<script src="gentest-cpp.js"></script>
|
|
|
|
<script src="gentest-java.js"></script>
|
|
|
|
<script src="gentest-cs.js"></script>
|
2017-01-02 02:22:45 -08:00
|
|
|
<script src="gentest-javascript.js"></script>
|
2016-08-11 11:45:45 -07:00
|
|
|
|
|
|
|
<style>
|
|
|
|
body {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
font-family: Helvetica;
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 100;
|
|
|
|
}
|
|
|
|
|
|
|
|
div, span {
|
|
|
|
box-sizing: border-box;
|
|
|
|
position: relative;
|
|
|
|
border: 0 solid black;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: stretch;
|
2016-10-23 10:27:30 -07:00
|
|
|
align-content: flex-start;
|
2016-08-11 11:45:45 -07:00
|
|
|
justify-content: flex-start;
|
|
|
|
flex-shrink: 0;
|
|
|
|
}
|
2016-08-25 15:28:34 -07:00
|
|
|
|
2016-09-14 08:51:07 -07:00
|
|
|
body > * {
|
2016-08-25 15:28:34 -07:00
|
|
|
position: absolute;
|
|
|
|
}
|
2016-09-14 08:51:07 -07:00
|
|
|
|
|
|
|
#ltr-container > * {
|
|
|
|
position: absolute;
|
|
|
|
direction: ltr;
|
|
|
|
}
|
|
|
|
|
|
|
|
#rtl-container > * {
|
|
|
|
position: absolute;
|
|
|
|
direction: rtl;
|
|
|
|
}
|
2016-08-11 11:45:45 -07:00
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2016-09-14 08:51:07 -07:00
|
|
|
<div id='ltr-container'>
|
|
|
|
|
|
|
|
%s
|
|
|
|
|
|
|
|
<div id='default'></div>
|
|
|
|
</div>
|
|
|
|
<div id='rtl-container'>
|
2016-08-11 11:45:45 -07:00
|
|
|
|
|
|
|
%s
|
|
|
|
|
|
|
|
<div id='default'></div>
|
|
|
|
</div>
|
2016-09-14 08:51:07 -07:00
|
|
|
|
|
|
|
<div>
|
|
|
|
|
|
|
|
%s
|
|
|
|
|
|
|
|
</div>
|
2016-08-11 11:45:45 -07:00
|
|
|
</body>
|
|
|
|
</html>
|