<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<!DOCTYPE bugzilla SYSTEM "https://bugs.webkit.org/page.cgi?id=bugzilla.dtd">

<bugzilla version="5.0.4.1"
          urlbase="https://bugs.webkit.org/"
          
          maintainer="admin@webkit.org"
>

    <bug>
          <bug_id>10165</bug_id>
          
          <creation_ts>2006-07-30 19:52:52 -0700</creation_ts>
          <short_desc>Vox: Master Bug</short_desc>
          <delta_ts>2021-10-20 11:32:44 -0700</delta_ts>
          <reporter_accessible>1</reporter_accessible>
          <cclist_accessible>1</cclist_accessible>
          <classification_id>1</classification_id>
          <classification>Unclassified</classification>
          <product>WebKit</product>
          <component>HTML Editing</component>
          <version>420+</version>
          <rep_platform>Mac</rep_platform>
          <op_sys>OS X 10.4</op_sys>
          <bug_status>RESOLVED</bug_status>
          <resolution>CONFIGURATION CHANGED</resolution>
          
          
          <bug_file_loc>http://www.vox.com/compose/</bug_file_loc>
          <status_whiteboard></status_whiteboard>
          <keywords>NeedsReduction</keywords>
          <priority>P2</priority>
          <bug_severity>Major</bug_severity>
          <target_milestone>---</target_milestone>
          <dependson>12250</dependson>
    
    <dependson>11826</dependson>
    
    <dependson>12920</dependson>
    
    <dependson>12921</dependson>
    
    <dependson>12922</dependson>
    
    <dependson>13116</dependson>
          
          <everconfirmed>1</everconfirmed>
          <reporter name="Lucas Wagner">lucas</reporter>
          <assigned_to name="Nobody">webkit-unassigned</assigned_to>
          <cc>ap</cc>
    
    <cc>banti17997</cc>
    
    <cc>chezsmithy</cc>
    
    <cc>justin.garcia</cc>
    
    <cc>juwahrichard</cc>
    
    <cc>kateshrestha</cc>
    
    <cc>kocharaj111</cc>
    
    <cc>mrowe</cc>
    
    <cc>nomozine</cc>
    
    <cc>rocky_1444</cc>
    
    <cc>webkit</cc>
          

      

      

      

          <comment_sort_order>oldest_to_newest</comment_sort_order>  
          <long_desc isprivate="0" >
    <commentid>51166</commentid>
    <comment_count>0</comment_count>
    <who name="Lucas Wagner">lucas</who>
    <bug_when>2006-07-30 19:52:52 -0700</bug_when>
    <thetext>The &quot;compose&quot; feature of blog site Vox doesn&apos;t work fully under WebKit/Safari; there&apos;s some level of functionality, but some features (insertion of media, strikethrough, select all, etc.) don&apos;t work as expected.

Note: since Vox is currently an invite-only service, I&apos;ve created an account for anyone wishing to investigate this:

Email: heylukee@gmail.com
Password: webkit</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>51168</commentid>
    <comment_count>1</comment_count>
    <who name="Lucas Wagner">lucas</who>
    <bug_when>2006-07-30 20:41:36 -0700</bug_when>
    <thetext>After downloading the latest build, things are much better; resizing text seems to be the only thing not yet working.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>51169</commentid>
    <comment_count>2</comment_count>
    <who name="Alexey Proskuryakov">ap</who>
    <bug_when>2006-07-30 21:21:52 -0700</bug_when>
    <thetext>Also, text alignment doesn&apos;t seem to work.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>56798</commentid>
    <comment_count>3</comment_count>
    <who name="Shawn Smith">chezsmithy</who>
    <bug_when>2006-09-29 10:56:56 -0700</bug_when>
    <thetext>Can we get this put on the &quot;Compatibility Hit List&quot;?

Other issues I see:

No way to move images which are inserted using cut and paste.  Using Firefox you can drag the images within the text.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>53149</commentid>
    <comment_count>4</comment_count>
    <who name="Shawn Smith">chezsmithy</who>
    <bug_when>2006-10-14 15:24:28 -0700</bug_when>
    <thetext>Did some investigation and found these two errors in the java script console.  Probrably going to be more but this might get an investigation started??  I noted the error and the code snipit it occured in.  The &lt;&lt;&lt;&lt; desigates the line where the error occured.

ERROR #1: Null Value Error
this.savedSelection = selection.getRangeAt(0).cloneRange();

saveSelection:function(){
var selection = this.getSelection();
if(selection.createRange){
var range = selection.createRange();
if(range.parentElement){
var element = range.parentElement();
if(element &amp;&amp; element.ownerDocument === this.document)
this.savedSelection = range.getBookmark();
}
}else if(selection.getRangeAt)
this.savedSelection = selection.getRangeAt(0).cloneRange(); &lt;&lt;&lt;&lt;
},


ERROR#2:  Value undefined (result of expression selection.removeAllRanges() is not object.
selection.removeAllRanges();

restoreSelection:function(){
this.focus();
if(!this.savedSelection)
return;
var selection = this.getSelection();
if(selection.createRange){
var range = this.document.body.createTextRange();
range.moveToBookmark(this.savedSelection);
range.select();
}else if(selection.getRangeAt){
selection.removeAllRanges(); &lt;&lt;&lt;&lt;
selection.addRange(this.savedSelection);
}
this.savedSelection = null;
this.logSelection();
},</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>53150</commentid>
    <comment_count>5</comment_count>
    <who name="Shawn Smith">chezsmithy</who>
    <bug_when>2006-10-14 15:28:51 -0700</bug_when>
    <thetext>Suggest changing the name of this bug from &quot;Compose Feature of Vox does not work&quot; to &quot;Compose new Blog Post on Vox is broken in Safari&quot;.

Also suggest changing the Component to HTML DOM.

Finally, suggest a higher severity given the number of VOX users who are negatively impacted who use OS X.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>42297</commentid>
    <comment_count>6</comment_count>
    <who name="Mark Rowe (bdash)">mrowe</who>
    <bug_when>2006-12-12 21:49:26 -0800</bug_when>
    <thetext>Trying to track this as a single &quot;This big and complex JavaScript site doesn&apos;t work&quot; is impractical.  The issues that make it &quot;broken&quot; really need to be filed as separate bugs, and reduced so that they can be resolved independently.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>42294</commentid>
    <comment_count>7</comment_count>
    <who name="Shawn Smith">chezsmithy</who>
    <bug_when>2006-12-12 22:51:17 -0800</bug_when>
    <thetext>Ok agreed.  I will start opening a series of individual issues and link them here.  Thanks for helping to get this some attention.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>42293</commentid>
    <comment_count>8</comment_count>
    <who name="Mark Rowe (bdash)">mrowe</who>
    <bug_when>2006-12-12 22:53:11 -0800</bug_when>
    <thetext>It would be ideal to use this as a master bug to track the functionality of Vox.  Put the new bug numbers into the &quot;Bug 10165 depends on:&quot; field to track them as dependencies of this bug.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>42228</commentid>
    <comment_count>9</comment_count>
    <who name="Shawn Smith">chezsmithy</who>
    <bug_when>2006-12-13 23:45:49 -0800</bug_when>
    <thetext>Bug 11826 (Lack of removeAllRanges() support in Webkit) has been opened.  It should be linked as a dependency.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>42229</commentid>
    <comment_count>10</comment_count>
    <who name="Mark Rowe (bdash)">mrowe</who>
    <bug_when>2006-12-13 23:55:08 -0800</bug_when>
    <thetext>Shawn, you should be able to mark it as a dependency by putting the bug number in the &quot;Bug 10165 depends on&quot; field above the &quot;Additional Comments&quot; text area.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>21011</commentid>
    <comment_count>11</comment_count>
    <who name="Justin Garcia">justin.garcia</who>
    <bug_when>2007-02-27 18:15:56 -0800</bug_when>
    <thetext>Re-titling as composing in Vox is no longer &quot;broken&quot;.  Adding a subtask to cover the control selections issue.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1806725</commentid>
    <comment_count>20</comment_count>
    <who name="Alexey Proskuryakov">ap</who>
    <bug_when>2021-10-20 11:28:04 -0700</bug_when>
    <thetext>Not actionable after 15 years, closing.</thetext>
  </long_desc>
      
      

    </bug>

</bugzilla>