Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

playwright-core

Package Overview
Dependencies
Maintainers
4
Versions
4695
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

playwright-core - npm Package Compare versions

Comparing version 1.49.0-beta-1731591637000 to 1.49.0-beta-1731595428000

lib/vite/recorder/assets/codeMirrorModule-xQmilyPo.js

13

lib/server/trace/recorder/snapshotterInjected.js

@@ -38,2 +38,3 @@ "use strict";

const kCurrentSrcAttribute = '__playwright_current_src__';
const kBoundingRectAttribute = '__playwright_bounding_rect__';

@@ -357,2 +358,14 @@ // Symbols for our own info on Nodes/StyleSheets.

}
if (nodeName === 'CANVAS') {
const boundingRect = element.getBoundingClientRect();
const value = JSON.stringify({
left: boundingRect.left / window.innerWidth,
top: boundingRect.top / window.innerHeight,
right: boundingRect.right / window.innerWidth,
bottom: boundingRect.bottom / window.innerHeight
});
expectValue(kBoundingRectAttribute);
expectValue(value);
attrs[kBoundingRectAttribute] = value;
}
if (element.scrollTop) {

@@ -359,0 +372,0 @@ expectValue(kScrollTopAttribute);

2

package.json
{
"name": "playwright-core",
"version": "1.49.0-beta-1731591637000",
"version": "1.49.0-beta-1731595428000",
"description": "A high-level API to automate web browsers",

@@ -5,0 +5,0 @@ "repository": {

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc