diff --git a/appveyor.yml b/appveyor.yml index e27f3cfea..57df5ca95 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,4 +1,4 @@ -version: 3.0.{build} +version: 4.0.{build} branches: only: - main diff --git a/lib/CefSharp.Dom.WinForms.Example/CefSharp.Dom.WinForms.Example.csproj b/lib/CefSharp.Dom.WinForms.Example/CefSharp.Dom.WinForms.Example.csproj index a1fa3acea..d6f36b513 100644 --- a/lib/CefSharp.Dom.WinForms.Example/CefSharp.Dom.WinForms.Example.csproj +++ b/lib/CefSharp.Dom.WinForms.Example/CefSharp.Dom.WinForms.Example.csproj @@ -12,7 +12,7 @@ - + diff --git a/lib/CefSharp.Dom.Wpf.Example/CefSharp.Dom.Wpf.Example.csproj b/lib/CefSharp.Dom.Wpf.Example/CefSharp.Dom.Wpf.Example.csproj index 9e7824e14..92d83270c 100644 --- a/lib/CefSharp.Dom.Wpf.Example/CefSharp.Dom.Wpf.Example.csproj +++ b/lib/CefSharp.Dom.Wpf.Example/CefSharp.Dom.Wpf.Example.csproj @@ -12,7 +12,7 @@ - + diff --git a/lib/PuppeteerSharp.TestServer/wwwroot/frames/frame.html b/lib/PuppeteerSharp.TestServer/wwwroot/frames/frame.html index e6d4a2377..1aa680b38 100644 --- a/lib/PuppeteerSharp.TestServer/wwwroot/frames/frame.html +++ b/lib/PuppeteerSharp.TestServer/wwwroot/frames/frame.html @@ -1,3 +1,8 @@ +
Hi, I'm frame
diff --git a/lib/PuppeteerSharp.TestServer/wwwroot/input/keyboard.html b/lib/PuppeteerSharp.TestServer/wwwroot/input/keyboard.html index 62e53e3d9..0524e825b 100644 --- a/lib/PuppeteerSharp.TestServer/wwwroot/input/keyboard.html +++ b/lib/PuppeteerSharp.TestServer/wwwroot/input/keyboard.html @@ -37,4 +37,4 @@ return temp; } - \ No newline at end of file + diff --git a/lib/PuppeteerSharp.TestServer/wwwroot/input/scrollable.html b/lib/PuppeteerSharp.TestServer/wwwroot/input/scrollable.html index 885d3739d..dc889629b 100644 --- a/lib/PuppeteerSharp.TestServer/wwwroot/input/scrollable.html +++ b/lib/PuppeteerSharp.TestServer/wwwroot/input/scrollable.html @@ -1,23 +1,37 @@ - + Scrollable test - - - - + - - \ No newline at end of file + button.onmouseup = event => { + if (![1,3,4].includes(event.button)) { + return; + } + event.preventDefault(); + button.textContent = { + 3: 'back click', + 4: 'forward click', + 1: 'aux click', + }[event.button]; + } + document.body.appendChild(button); + document.body.appendChild(document.createElement('br')); + } + + + diff --git a/lib/PuppeteerSharp.TestServer/wwwroot/input/textarea.html b/lib/PuppeteerSharp.TestServer/wwwroot/input/textarea.html index 6d77f3106..a6c065023 100644 --- a/lib/PuppeteerSharp.TestServer/wwwroot/input/textarea.html +++ b/lib/PuppeteerSharp.TestServer/wwwroot/input/textarea.html @@ -4,7 +4,7 @@ Textarea test - +