Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: update qunit-harness build #2993

Merged
merged 22 commits into from
Feb 16, 2024
Prev Previous commit
Next Next commit
test update
  • Loading branch information
Bayheck committed Feb 10, 2024
commit e433ced2b0cb1186f3e5cf34befc23db40576da8
8 changes: 8 additions & 0 deletions test/client/fixtures/sandbox/event/event-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,16 @@ if (browserUtils.isWebKit) {
'<rect id="rect" width="300" height="300" fill="red" tabIndex="1"></rect>' +
'</svg>').appendTo('body');

var $divElement = $('<div>').text('Before processDomMeth');

$('body').append($divElement);

processDomMeth($svgElement[0]);

var $afterDiv = $('<div>').text('Text after processDomMeth');

$('body').append($afterDiv);

var rectElement = document.getElementById('rect');

rectElement.onfocus = function () {
Expand Down