Tim Down

Results 8 issues of Tim Down

Example code (run in IE < 9): ``` javascript var div1 = document.createElement("div"); var div2 = document.createElement("div"); alert(div2.previousSibling); // Should be null, is actually a reference to div1 ``` nextSibling...

This PR changes the key handling to use a keymap with a single keybinding with the [any](https://codemirror.net/docs/ref/#view.KeyBinding.any) method, which is new in `@codemirror/view` 6.3.0. This means that rather than the...

_From [[email protected]](https://code.google.com/u/102341046603171543275/) on January 01, 2011 10:33:19_ What steps will reproduce the problem? 1.Use the following HTML: function testClone(node){ var range = rangy.createRange(); range.selectNode(node); document.body.appendChild(range.cloneContents()); rangy.getSelection().setSingleRange(range); var range2 = rangy.getSelection().getRangeAt(0);...

bug
imported
Priority-Medium

_From [[email protected]](https://code.google.com/u/109609144121560897758/) on January 21, 2013 14:16:45_ What steps will reproduce the problem? 1. Go to this URL: data:text/html;, 1. Watch the input box What is the expected output? What...

bug
imported
Priority-Medium

# Why The block cursor currently has a couple of issues. Firstly, the cursor is taller on an empty line than on non-empty lines. To illustrate this, all of the...

Currently, "武汉" is transliterated (via `to_url`) as "wu-yi". I have it on good authority that this is incorrect and should be transliterated as "wu-han", so this PR changes the transliteration...

Steps to reproduce: 1. Use a machine running Ubuntu 20.04 with Ruby (I used 2.6.5 but I don't think it matters) and Bundler 2. Create a new Rails 6.1 application...

The built `dist/index.js` contains `/*@__PURE__*/` annotations, as mentioned in the [CM buildhelper README](https://github.com/codemirror/buildhelper/): > NOTE: This tool will add a `/*@__PURE__*/` annotation in front of every top-level function call, to...