Skip to content

Commit

Permalink
first drag page.
Browse files Browse the repository at this point in the history
  • Loading branch information
Dummy committed Feb 22, 2019
1 parent f3bca6c commit 80851d3
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@
</ItemGroup>

<ItemGroup>
<None Update="wwwroot\engine\drag.html">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="wwwroot\engine\focus.html">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
Expand Down
28 changes: 28 additions & 0 deletions src/FluffySpoon.Automation.Web.Tests/wwwroot/engine/drag.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<!DOCTYPE html>

<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title>Engine test</title>
<style>
.b {
background-color: red;
}

.a {
background-color: blue;
}

.draggable {
width: 256px;
height: 256px;
border: 1px solid black;
margin: 10px;
}
</style>
</head>
<body>
<div draggable="true" class="draggable a"></div>
<div draggable="true" class="draggable b"></div>
</body>
</html>

0 comments on commit 80851d3

Please sign in to comment.