简体   繁体   中英

How debug the error when Microsoft Edge crash with Error code: SIGILL

I'm developing Web App and sometimes i've experienced in devTools in Microsoft Edge. The page crash with a message Error code: SIGILL

in this case the code that crash the page is in the style CSS part of the index.html page, and the code is:

 .circle {
   @supports (cx: 1) {
    transform: translateX(0);
    cx: 17;
  }
 }

So my question is.... how i can debug what cause edge to crash without start to remove part of the code i've just written?

If you want to debug CSS code without removing any part of them, you can use the Styles pane in Elements tab of the DevTools. By the way, it seems that your code has some mistakes. It should probably be

@supports (cx: 1) {
 .circle {
  transform: translateX(0);
  cx: 17;
  }
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM