css3 - openwebkitsharp read/write protected memory -


i trying integrate webkit.net project. started off openwebkitsharp 3.0 because supports latest html5/css3 experiencing crash clicking page , on load sometimes. error below:

attempted read or write protected memory. indication other memory corrupt.

i can't fathom issue happens randomly navigating through page. various articles read online error webkit.dll , advised wait release of more stable version.

after multiple days of trials, found version webkitdotnet-develop seems more stable doesn't support webfonts(.ttf/woff/svg) backbone.js framework. webfonts worked fine simple html file not backbone.js eventhough able load same file using google/firefox browsers no problem. guess in backbone.js breaking @font-face style displaying in webkitbrowser.

could of 2 issues? in advance!

i experiencing crash clicking page , on load sometimes.

the underlying dom interfaces events not implemented, leads null reference

the webfonts worked fine simple html file not backbone.js

the backbone view creates ids , class names dynamically, find bindings in render , create matching selectors fonts:

  <style>   .fonty {           font: 14px/1.4em "helvetica neue",helvetica,arial,sans-serif;          color: rgb(51, 51, 51);   }   </style>    <script>   render: function() {   this.$el.toggleclass('fonty', this.model.get('done'));   }   </script> 

references


Comments

Popular posts from this blog

Android layout hidden on keyboard show -

google app engine - 403 Forbidden POST - Flask WTForms -

c - Why would PK11_GenerateRandom() return an error -8023? -