Wef is a Rust library for embedding WebView functionality using Chromium Embedded Framework (CEF3) with offscreen rendering support.
48 lines
933 B
HTML
48 lines
933 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Test Cases</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
margin: 20px;
|
|
}
|
|
h1 {
|
|
color: #333;
|
|
}
|
|
ul {
|
|
list-style-type: none;
|
|
padding: 0;
|
|
}
|
|
li {
|
|
margin: 10px 0;
|
|
}
|
|
a {
|
|
text-decoration: none;
|
|
color: #007bff;
|
|
}
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Test Cases</h1>
|
|
<ul>
|
|
<li>
|
|
<a href="jsdialog.html">JavaScript Dialog</a>
|
|
</li>
|
|
<li>
|
|
<a href="upload.html">File Upload</a>
|
|
</li>
|
|
<li>
|
|
<a href="input.html">Text Input</a>
|
|
</li>
|
|
<li>
|
|
<a href="jsbridge.html">JSBridge</a>
|
|
</li>
|
|
</ul>
|
|
</body>
|
|
</html>
|