Re: [w3c/editing] Should we expose physical direction in Deletion commands? (for the case of RTL) (#133)

>From the description of static ranges, I would image that they can point to both text content and non-textual content. 

**Text content:**
```
<b>hello |there|</b>
```
StaticRange = start: {node: textnode, offset: 6}, end: {node: textnode, offset: 12}

**Non-text content:**
```
<b>hello|<img>|mellow</b>
```

StaticRange = start: {node: \<b>, offset: 1}, end: {node: \<b>, offset: 2}


---
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3c/editing/issues/133#issuecomment-236483631

Received on Monday, 1 August 2016 03:49:44 UTC